Click here to Skip to main content
15,900,378 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: WPF Datagrid? Pin
Christian Graus9-Jun-09 20:33
protectorChristian Graus9-Jun-09 20:33 
GeneralRe: WPF Datagrid? Pin
S Rajput9-Jun-09 20:58
S Rajput9-Jun-09 20:58 
GeneralRe: WPF Datagrid? Pin
Pete O'Hanlon9-Jun-09 21:53
mvePete O'Hanlon9-Jun-09 21:53 
GeneralRe: WPF Datagrid? Pin
Christian Graus9-Jun-09 22:24
protectorChristian Graus9-Jun-09 22:24 
QuestionGaussian Blur Effect Pin
Etienne_1239-Jun-09 6:50
Etienne_1239-Jun-09 6:50 
AnswerRe: Gaussian Blur Effect Pin
#realJSOP9-Jun-09 9:03
professional#realJSOP9-Jun-09 9:03 
AnswerRe: Gaussian Blur Effect Pin
Christian Graus9-Jun-09 10:51
protectorChristian Graus9-Jun-09 10:51 
AnswerRe: Gaussian Blur Effect Pin
Pete O'Hanlon9-Jun-09 23:06
mvePete O'Hanlon9-Jun-09 23:06 
This is actually quite trivial. Here's a sample:
<Window 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Window.BitmapEffect>
    <BlurBitmapEffect x:Name="blurTarget" KernelType="Gaussian" Radius="0"/>
  </Window.BitmapEffect>
  <Window.Triggers>
    <EventTrigger RoutedEvent="Window.Loaded">
      <BeginStoryboard>
        <Storyboard>
          <DoubleAnimation
            Duration="0: 0:10"
            From="0.0"
            Storyboard.TargetName="blurTarget"
            Storyboard.TargetProperty="Radius"
            To="40.0"/>
        </Storyboard>
      </BeginStoryboard>
    </EventTrigger>
  </Window.Triggers>
  <Grid>
    <Button Content="This Is my button" />
  </Grid>
</Window>


"WPF has many lovers. It's a veritable porn star!" - Josh Smith

As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.


My blog | My articles | MoXAML PowerToys | Onyx



GeneralRe: Gaussian Blur Effect Pin
Etienne_12310-Jun-09 3:49
Etienne_12310-Jun-09 3:49 
GeneralRe: Gaussian Blur Effect Pin
#realJSOP10-Jun-09 8:12
professional#realJSOP10-Jun-09 8:12 
QuestionNavigationEventArgs.Uri and LoadCompleted event Pin
Gary Wheeler9-Jun-09 5:32
Gary Wheeler9-Jun-09 5:32 
QuestionCopy Paste event handler at design time Pin
Vinod C S9-Jun-09 5:20
Vinod C S9-Jun-09 5:20 
AnswerRe: Copy Paste event handler at design time Pin
Christian Graus9-Jun-09 10:53
protectorChristian Graus9-Jun-09 10:53 
AnswerRe: Copy Paste event handler at design time Pin
User 27100910-Jun-09 5:07
User 27100910-Jun-09 5:07 
QuestionHow to display canvas thumbnails. Pin
Nekkantidivya8-Jun-09 21:23
Nekkantidivya8-Jun-09 21:23 
AnswerRe: How to display canvas thumbnails. Pin
Pete O'Hanlon8-Jun-09 23:08
mvePete O'Hanlon8-Jun-09 23:08 
QuestionProblem in showing an image in WPF Pin
paradisonoir8-Jun-09 14:18
paradisonoir8-Jun-09 14:18 
AnswerRe: Problem in showing an image in WPF Pin
Mark Salsbery8-Jun-09 14:49
Mark Salsbery8-Jun-09 14:49 
GeneralRe: Problem in showing an image in WPF Pin
#realJSOP8-Jun-09 23:36
professional#realJSOP8-Jun-09 23:36 
GeneralRe: Problem in showing an image in WPF Pin
Mark Salsbery9-Jun-09 5:43
Mark Salsbery9-Jun-09 5:43 
GeneralRe: Problem in showing an image in WPF Pin
#realJSOP9-Jun-09 9:01
professional#realJSOP9-Jun-09 9:01 
AnswerRe: Problem in showing an image in WPF Pin
Christian Graus8-Jun-09 16:13
protectorChristian Graus8-Jun-09 16:13 
JokeRe: Problem in showing an image in WPF Pin
Mark Salsbery9-Jun-09 5:43
Mark Salsbery9-Jun-09 5:43 
GeneralRe: Problem in showing an image in WPF Pin
Christian Graus9-Jun-09 10:53
protectorChristian Graus9-Jun-09 10:53 
QuestionUsing Drawing Brushes in WPF 3D Pin
David Shapira8-Jun-09 10:16
David Shapira8-Jun-09 10:16 

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.