Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <!--<SnippetMarkup>--> | |
| <UserControl x:Class="MyUserControl.NumericUpDown" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | |
| <Grid Margin="3"> | |
| <Grid.RowDefinitions> | |
| <RowDefinition/> | |
| <RowDefinition/> | |
| </Grid.RowDefinitions> | |
| <Grid.ColumnDefinitions> | |
| <ColumnDefinition/> | |
| <ColumnDefinition/> | |
| </Grid.ColumnDefinitions> | |
| <!--<SnippetUIRefMarkup>--> | |
| <Border BorderThickness="1" BorderBrush="Gray" Margin="2" | |
| Grid.RowSpan="2" VerticalAlignment="Center" HorizontalAlignment="Stretch"> | |
| <TextBlock Name="valueText" Width="60" TextAlignment="Right" Padding="5"/> | |
| </Border> | |
| <!--</SnippetUIRefMarkup>--> | |
| <!--<SnippetEventHandlerXAML>--> | |
| <RepeatButton Name="upButton" Click="upButton_Click" | |
| Grid.Column="1" Grid.Row="0">Up</RepeatButton> | |
| <RepeatButton Name="downButton" Click="downButton_Click" | |
| Grid.Column="1" Grid.Row="1">Down</RepeatButton> | |
| <!--</SnippetEventHandlerXAML>--> | |
| </Grid> | |
| </UserControl> | |
| <!--</SnippetMarkup>--> |