Files
Ami Bar 760bc5d1a9 Added support for Silverlight and Mono (And more)
Also added:
* Join, Choice, and Pipe to SmartThreadPool.
* Local performance counters (for Mono, Silverlight, and WindowsCE)
2009-12-19 17:36:39 +02:00

25 lines
1.1 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<UserControl x:Class="STPSLDemo.SpinButton"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="Auto" Height="Auto" Loaded="UserControl_Loaded">
<StackPanel Orientation="Horizontal" Width="Auto" Grid.ColumnSpan="4">
<!-- Displays the current value. -->
<TextBox Name="lblCurrentValue" Background="White"
Height="30" Width = "50" VerticalContentAlignment="Center"
HorizontalContentAlignment="Center" FontSize="14" />
<StackPanel Orientation="Vertical">
<!-- The Up button. -->
<RepeatButton Height = "15" Width = "15" Name = "repeatAddValueButton" Delay = "200" Interval = "1"
Content = "+" FontSize="6" Click="Increment_Click" />
<!-- The Down button. -->
<RepeatButton Height = "15" Width = "15"
Name = "repeatRemoveValueButton" Delay = "200" Interval = "1"
Content = "-" FontSize="6" Click="Decrement_Click" />
</StackPanel>
</StackPanel>
</UserControl>