Click here to Skip to main content
15,894,539 members
Articles / Desktop Programming / WPF

Adventures into Ink API using WPF

Rate me:
Please Sign up or sign in to vote.
4.93/5 (59 votes)
7 Jun 200710 min read 255.1K   6.5K   102  
Adventures into Ink API using WPF
<ResourceDictionary
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:local="clr-namespace:BitsOfStuff" 
  >

       	<Style x:Key="PulseButton" TargetType="{x:Type Button}">
      		<Style.BasedOn>
      			<Style TargetType="{x:Type ButtonBase}">
      				<Setter Property="FocusVisualStyle">
      					<Setter.Value>
      						<Style>
      							<Setter Property="Control.Template">
      								<Setter.Value>
      									<ControlTemplate>
      										<Border>
      											<Rectangle SnapsToDevicePixels="True" Stroke="#FF000000" StrokeDashArray="1 2" StrokeThickness="1" Margin="4,4,4,4"/>
      										</Border>
      									</ControlTemplate>
      								</Setter.Value>
      							</Setter>
      						</Style>
      					</Setter.Value>
      				</Setter>
      				<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
      				<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
      				<Setter Property="BorderBrush">
      					<Setter.Value>
      						<SolidColorBrush/>
      					</Setter.Value>
      				</Setter>
      				<Setter Property="BorderThickness" Value="3,3,3,3"/>
      				<Setter Property="HorizontalContentAlignment" Value="Center"/>
      				<Setter Property="VerticalContentAlignment" Value="Center"/>
      				<Setter Property="Padding" Value="0,0,1,1"/>
      				<Setter Property="Template">
      					<Setter.Value>
      						<ControlTemplate TargetType="{x:Type ButtonBase}">
      							<ControlTemplate.Resources>
      								<Storyboard x:Key="OnMouseEnter1">
      									<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="border" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)">
      										<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
      										<SplineDoubleKeyFrame KeyTime="00:00:00.2000000" Value="1.3"/>
      										<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/>
      									</DoubleAnimationUsingKeyFrames>
      									<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="border" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)">
      										<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/>
      										<SplineDoubleKeyFrame KeyTime="00:00:00.2000000" Value="1.3"/>
      										<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/>
      									</DoubleAnimationUsingKeyFrames>
      									<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="border" Storyboard.TargetProperty="(UIElement.Opacity)">
      										<SplineDoubleKeyFrame KeyTime="00:00:00.2000000" Value="0.4"/>
      										<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/>
      									</DoubleAnimationUsingKeyFrames>
      								</Storyboard>
      							</ControlTemplate.Resources>
      							<Border RenderTransformOrigin="0.5,0.5" x:Name="border" Width="Auto" Height="Auto" BorderBrush="{x:Null}" BorderThickness="5,5,5,5" CornerRadius="4,4,4,4" Background="{x:Null}">
      								<Border.RenderTransform>
      									<TransformGroup>
      										<ScaleTransform ScaleX="1" ScaleY="1"/>
      										<SkewTransform AngleX="0" AngleY="0"/>
      										<RotateTransform Angle="0"/>
      										<TranslateTransform X="0" Y="0"/>
      									</TransformGroup>
      								</Border.RenderTransform>
      								<ContentPresenter Width="Auto" Height="Auto" RenderTransformOrigin="0.403,0.5" HorizontalAlignment="Center" VerticalAlignment="Center"/>
      							</Border>
      							<ControlTemplate.Triggers>
      								<EventTrigger RoutedEvent="Mouse.MouseEnter" SourceName="border">
      									<BeginStoryboard Storyboard="{StaticResource OnMouseEnter1}"/>
      								</EventTrigger>
      								<EventTrigger RoutedEvent="FrameworkElement.Loaded"/>
      								<EventTrigger RoutedEvent="FrameworkElement.Loaded"/>
      								<EventTrigger RoutedEvent="FrameworkElement.Loaded"/>
      								<Trigger Property="IsKeyboardFocused" Value="True"/>
      								<Trigger Property="Button.IsDefaulted" Value="True"/>
      								<Trigger Property="IsPressed" Value="True"/>
      								<Trigger Property="ToggleButton.IsChecked" Value="True"/>
      								<Trigger Property="IsEnabled" Value="False">
      									<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.GrayTextBrushKey}}"/>
      								</Trigger>
      							</ControlTemplate.Triggers>
      						</ControlTemplate>
      					</Setter.Value>
      				</Setter>
      			</Style>
      		</Style.BasedOn>
      	</Style>

</ResourceDictionary>
  

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United Kingdom United Kingdom
I currently hold the following qualifications (amongst others, I also studied Music Technology and Electronics, for my sins)

- MSc (Passed with distinctions), in Information Technology for E-Commerce
- BSc Hons (1st class) in Computer Science & Artificial Intelligence

Both of these at Sussex University UK.

Award(s)

I am lucky enough to have won a few awards for Zany Crazy code articles over the years

  • Microsoft C# MVP 2016
  • Codeproject MVP 2016
  • Microsoft C# MVP 2015
  • Codeproject MVP 2015
  • Microsoft C# MVP 2014
  • Codeproject MVP 2014
  • Microsoft C# MVP 2013
  • Codeproject MVP 2013
  • Microsoft C# MVP 2012
  • Codeproject MVP 2012
  • Microsoft C# MVP 2011
  • Codeproject MVP 2011
  • Microsoft C# MVP 2010
  • Codeproject MVP 2010
  • Microsoft C# MVP 2009
  • Codeproject MVP 2009
  • Microsoft C# MVP 2008
  • Codeproject MVP 2008
  • And numerous codeproject awards which you can see over at my blog

Comments and Discussions