Click here to Skip to main content
15,914,013 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Windows Pin
User 27100912-Feb-08 7:44
User 27100912-Feb-08 7:44 
GeneralRe: Windows Pin
IWannaTalk12-Feb-08 23:45
IWannaTalk12-Feb-08 23:45 
GeneralRe: Windows Pin
User 27100912-Feb-08 23:47
User 27100912-Feb-08 23:47 
GeneralRe: Windows Pin
IWannaTalk12-Feb-08 23:55
IWannaTalk12-Feb-08 23:55 
GeneralRe: Windows Pin
User 27100913-Feb-08 0:16
User 27100913-Feb-08 0:16 
GeneralRe: Windows Pin
IWannaTalk13-Feb-08 0:17
IWannaTalk13-Feb-08 0:17 
QuestionAnimated button in WPF Pin
Pawel Gielmuda12-Feb-08 2:03
Pawel Gielmuda12-Feb-08 2:03 
GeneralRe: Animated button in WPF Pin
Pawel Gielmuda12-Feb-08 2:03
Pawel Gielmuda12-Feb-08 2:03 
Here is the code
<code>
<Button Name="fde" Height="150" Width="150" Foreground="DarkRed" FontSize="20">
<Button.BitmapEffect>
<OuterGlowBitmapEffect x:Name="GlowBitmapEffect" Noise="0" GlowSize="6" Opacity="0.9" />
</Button.BitmapEffect>
<Button.Content>Abscdef</Button.Content>
<Button.Background>
<DrawingBrush>
<DrawingBrush.Drawing>
<GeometryDrawing Brush="DarkBlue" >
<GeometryDrawing.Geometry>
<GeometryGroup FillRule="Nonzero" >
<EllipseGeometry RadiusX="20" RadiusY="45" Center="50,50" />
<EllipseGeometry RadiusX="45" RadiusY="20" Center="50,50" />
</GeometryGroup>
</GeometryDrawing.Geometry>
<GeometryDrawing.Pen>
<Pen Thickness="6">
<Pen.Brush>
<LinearGradientBrush>
<GradientStop Offset="0.0" Color="Black" />
<GradientStop Offset="1.0" Color="Gray" />
</LinearGradientBrush>
</Pen.Brush>
</Pen>
</GeometryDrawing.Pen>
</GeometryDrawing>
</DrawingBrush.Drawing>
</DrawingBrush>
</Button.Background>
<Button.Triggers>
<EventTrigger RoutedEvent="Button.MouseEnter">
<BeginStoryboard>
<Storyboard Storyboard.TargetName="GlowBitmapEffect" Storyboard.TargetProperty="Opacity">
<DoubleAnimation From="0.0" To="1.0" AutoReverse="True" Duration="0Blush | :O :1.5" RepeatBehavior="Forever" ></DoubleAnimation>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.Triggers>
</Button>
</code>
GeneralRe: Animated button in WPF Pin
newc112-Feb-08 3:55
newc112-Feb-08 3:55 
GeneralRe: Animated button in WPF Pin
Pawel Gielmuda12-Feb-08 4:12
Pawel Gielmuda12-Feb-08 4:12 
GeneralTree view Pin
IWannaTalk11-Feb-08 21:23
IWannaTalk11-Feb-08 21:23 
GeneralRe: Tree view Pin
User 27100912-Feb-08 2:31
User 27100912-Feb-08 2:31 
GeneralRe: Tree view Pin
IWannaTalk12-Feb-08 2:45
IWannaTalk12-Feb-08 2:45 
QuestionCommand performance problem Pin
Super Lloyd11-Feb-08 13:13
Super Lloyd11-Feb-08 13:13 
GeneralRe: Command performance problem Pin
User 27100911-Feb-08 13:45
User 27100911-Feb-08 13:45 
GeneralRe: Command performance problem Pin
Super Lloyd11-Feb-08 14:18
Super Lloyd11-Feb-08 14:18 
GeneralRe: Command performance problem Pin
User 27100911-Feb-08 14:21
User 27100911-Feb-08 14:21 
GeneralRe: Command performance problem Pin
Josh Smith12-Feb-08 7:41
Josh Smith12-Feb-08 7:41 
GeneralRe: Command performance problem Pin
User 27100912-Feb-08 7:43
User 27100912-Feb-08 7:43 
GeneralRe: Command performance problem Pin
Josh Smith12-Feb-08 7:45
Josh Smith12-Feb-08 7:45 
GeneralRe: Command performance problem Pin
User 27100912-Feb-08 7:47
User 27100912-Feb-08 7:47 
GeneralRe: Command performance problem Pin
Josh Smith12-Feb-08 7:48
Josh Smith12-Feb-08 7:48 
GeneralRe: Command performance problem Pin
User 27100912-Feb-08 7:50
User 27100912-Feb-08 7:50 
GeneralRe: Command performance problem Pin
Josh Smith12-Feb-08 7:56
Josh Smith12-Feb-08 7:56 
GeneralRe: Command performance problem Pin
Pete O'Hanlon12-Feb-08 11:24
mvePete O'Hanlon12-Feb-08 11:24 

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.