Okay. Change the file, build, point to new assembly. I can only blame my initial confusion on the fact that it's Friday.
My only problem now is getting the code correct to make the new affect. I plan to recreate the storyboard animation I have in xaml in my cs page. Anyone know how to do this? Here's my xaml.
<ControlTemplate x:Key="WhiteBackGlowButton" TargetType="Button">
<Grid Cursor="Hand" Background="Transparent" Margin="2,0,2,0" RenderTransformOrigin="0.5,0.5">
<Grid.RenderTransform>
<ScaleTransform x:Name="handScale" />
</Grid.RenderTransform>
<VisualStateManager.VisualStateGroups>
<VisualStateGroup x:Name="CommonStates">
<VisualState x:Name="Normal">
<Storyboard>
<DoubleAnimation To="0" FillBehavior="HoldEnd" Storyboard.TargetName="brushLight"
Storyboard.TargetProperty="Opacity" Duration="0:0:0.4" />
<DoubleAnimation To="1" Storyboard.TargetName="handScale" BeginTime="0:0:0" Storyboard.TargetProperty="ScaleX" Duration="0:0:0.1" />
<DoubleAnimation To="1" Storyboard.TargetName="handScale" BeginTime="0:0:0" Storyboard.TargetProperty="ScaleY" Duration="0:0:0.1" />
</Storyboard>
</VisualState>
<VisualState x:Name="MouseOver">
<Storyboard>
<DoubleAnimation To="0.75" FillBehavior="HoldEnd" Storyboard.TargetName="brushLight"
Storyboard.TargetProperty="Opacity" Duration="0:0:0.1" />
<DoubleAnimation To="1.5" Storyboard.TargetName="handScale" BeginTime="0:0:0" Storyboard.TargetProperty="ScaleX" Duration="0:0:0.1" />
<DoubleAnimation To="1.5" Storyboard.TargetName="handScale" BeginTime="0:0:0" Storyboard.TargetProperty="ScaleY" Duration="0:0:0.1" />
</Storyboard>
</VisualState>
</VisualStateGroup>
</VisualStateManager.VisualStateGroups>
<!-- The background white glow effect -->
<Canvas Width="60" Height="30" Margin="-20,0,0,0" VerticalAlignment="Top" HorizontalAlignment="Left">
<Rectangle x:Name="backGlow" RenderTransformOrigin="0.5,1" IsHitTestVisible="False"
Width="60" Height="30" Canvas.Left="0" Canvas.Top="0">
<Rectangle.Fill>
<RadialGradientBrush x:Name="brushLight" Center="0.5, 0.75" RadiusY="0.65">
<GradientStop Offset="0" Color="#FFFFFFFF" />
<GradientStop Offset="0.98" Color="#00FFFFFF" />
</RadialGradientBrush>
</Rectangle.Fill>
</Rectangle>
</Canvas>
<!-- Content of the menu/tool -->
<ContentPresenter x:Name="contentPresenter" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}"/>
</Grid>
</ControlTemplate>