Click here to Skip to main content
16,009,057 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Is there similar properity like Anchor Properity in WPF? Pin
Jammer29-Jul-08 1:36
Jammer29-Jul-08 1:36 
QuestionWPF Hierarchical Data Templates are killing me Pin
gantww26-Jul-08 17:32
gantww26-Jul-08 17:32 
AnswerRe: WPF Hierarchical Data Templates are killing me Pin
MIHAI_MTZ28-Jul-08 1:17
MIHAI_MTZ28-Jul-08 1:17 
GeneralRe: WPF Hierarchical Data Templates are killing me Pin
gantww28-Jul-08 13:37
gantww28-Jul-08 13:37 
QuestionWPF hyperlink Click event Pin
Suj_7825-Jul-08 4:45
Suj_7825-Jul-08 4:45 
AnswerRe: WPF hyperlink Click event Pin
Super Lloyd27-Jul-08 21:11
Super Lloyd27-Jul-08 21:11 
QuestionWPF Animation. Pin
ciacia24-Jul-08 20:13
ciacia24-Jul-08 20:13 
AnswerRe: WPF Animation. Pin
Jammer25-Jul-08 0:30
Jammer25-Jul-08 0:30 
<Window
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	x:Class="DemoAnim.Window1"
	x:Name="Window"
	Title="Window1"
	Width="640" Height="480">
	<Window.Resources>
		<Storyboard x:Key="GrowEllipse">
			<doubleanimationusingkeyframes begintime="00:00:00" storyboard.targetname="ellipse" storyboard.targetproperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)" mode="hold" />				<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
				<SplineDoubleKeyFrame KeyTime="00:00:01" Value="1.643"/>
			</DoubleAnimationUsingKeyFrames>
			<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)">
				<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
				<SplineDoubleKeyFrame KeyTime="00:00:01" Value="1.643"/>
			</DoubleAnimationUsingKeyFrames>
			<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.X)">
				<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/>
				<SplineDoubleKeyFrame KeyTime="00:00:01" Value="0"/>
			</DoubleAnimationUsingKeyFrames>
			<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="ellipse" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.Y)">
				<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/>
				<SplineDoubleKeyFrame KeyTime="00:00:01" Value="0"/>
			</DoubleAnimationUsingKeyFrames>
		</Storyboard>
	</Window.Resources>
	<Window.Triggers>
		<EventTrigger RoutedEvent="FrameworkElement.Loaded">
			<BeginStoryboard Storyboard="{StaticResource GrowEllipse}"/>
		</EventTrigger>
	</Window.Triggers>
	<Grid x:Name="LayoutRoot">
		<Ellipse Fill="#FFFF0000" Stroke="#FF000000" Margin="176,127,0,214" StrokeThickness="5" Width="112" HorizontalAlignment="Left" x:Name="ellipse" RenderTransformOrigin="0.5,0.5">
			<Ellipse.RenderTransform>
				<TransformGroup>
					<ScaleTransform ScaleX="1" ScaleY="1"/>
					<SkewTransform AngleX="0" AngleY="0"/>
					<RotateTransform Angle="0"/>
					<TranslateTransform X="0" Y="0"/>
				</TransformGroup>
			</Ellipse.RenderTransform>
		</Ellipse>
		<Ellipse Fill="#FFFF0000" Stroke="#FF000000" StrokeThickness="5" Margin="0,91,75,178" Width="184" HorizontalAlignment="Right"/>
	</Grid>
</Window>


Jammer

Going where everyone here has gone before! Smile | :)
My Blog

QuestionFocus issue Pin
Alex Skye24-Jul-08 7:41
Alex Skye24-Jul-08 7:41 
AnswerRe: Focus issue Pin
The Only Nock8-Aug-08 7:33
The Only Nock8-Aug-08 7:33 
QuestionMaintaing Session between WPF browser application and WCF service Pin
puneet.priyadarshi24-Jul-08 3:50
puneet.priyadarshi24-Jul-08 3:50 
Question[Message Deleted] Pin
C#_Programmer23-Jul-08 21:14
C#_Programmer23-Jul-08 21:14 
AnswerRe: color of wpf listview column Pin
Pete O'Hanlon24-Jul-08 4:33
mvePete O'Hanlon24-Jul-08 4:33 
GeneralRe: color of wpf listview column Pin
C#_Programmer24-Jul-08 8:32
C#_Programmer24-Jul-08 8:32 
GeneralRe: color of wpf listview column Pin
Pete O'Hanlon24-Jul-08 8:53
mvePete O'Hanlon24-Jul-08 8:53 
GeneralRe: color of wpf listview column Pin
Jammer24-Jul-08 22:52
Jammer24-Jul-08 22:52 
GeneralRe: color of wpf listview column Pin
Pete O'Hanlon24-Jul-08 23:59
mvePete O'Hanlon24-Jul-08 23:59 
GeneralRe: color of wpf listview column Pin
Jammer25-Jul-08 0:16
Jammer25-Jul-08 0:16 
QuestionSession state maintanace in wpf browser application Pin
puneet.priyadarshi23-Jul-08 20:35
puneet.priyadarshi23-Jul-08 20:35 
AnswerRe: Session state maintanace in wpf browser application Pin
John_Adams24-Jul-08 23:38
John_Adams24-Jul-08 23:38 
QuestionUser Control inside other User Control problem Pin
edu_fidi23-Jul-08 20:07
edu_fidi23-Jul-08 20:07 
AnswerRe: User Control inside other User Control problem Pin
Jammer24-Jul-08 11:49
Jammer24-Jul-08 11:49 
GeneralRe: User Control inside other User Control problem Pin
edu_fidi24-Jul-08 12:01
edu_fidi24-Jul-08 12:01 
GeneralRe: User Control inside other User Control problem Pin
Jammer24-Jul-08 12:30
Jammer24-Jul-08 12:30 
GeneralRe: User Control inside other User Control problem Pin
Jammer24-Jul-08 12:42
Jammer24-Jul-08 12:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.