-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathLargeArrayHandler.xaml
More file actions
16 lines (14 loc) · 858 Bytes
/
Copy pathLargeArrayHandler.xaml
File metadata and controls
16 lines (14 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<UserControl x:Class="ArrayVisualizerExt.LargeArrayHandler"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="289" d:DesignWidth="349">
<Grid>
<TextBlock Name="MessageBlock" TextWrapping="Wrap" Margin="10,10,10,0" Height="94" VerticalAlignment="Top"
Text="Message" />
<Button Name="ButtonLoadArray" Content="Load Array" HorizontalAlignment="Left" Margin="10,109,0,0"
VerticalAlignment="Top" Width="138" RenderTransformOrigin="0,0" Click="LoadArray_Click" />
</Grid>
</UserControl>