-
Notifications
You must be signed in to change notification settings - Fork 0
/
TabNewUserControl.xaml
68 lines (55 loc) · 2.12 KB
/
TabNewUserControl.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<UserControl x:Class="Polymetal.Pdms.Design.DrawListManager.TabNewUserControl"
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="300" d:DesignWidth="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"></ColumnDefinition>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<DockPanel
Grid.ColumnSpan="1"
Grid.Row="0"
Margin="3"
>
<TextBlock
x:Name="NameRegionBlock"
FontSize="18"
FontWeight="Bold"
FontStyle="Italic"
/>
</DockPanel>
<DockPanel
Grid.Column="0"
Grid.Row="1"
Margin="3"
>
<Canvas
x:Name="canvasUC"
/>
</DockPanel>
<DockPanel
Grid.Column="1"
Grid.Row="0"
Grid.RowSpan="2"
Margin="3"
>
<Slider x:Name="SliderLimits"
Orientation="Vertical"
TickPlacement="BottomRight"
Margin="1"
AutoToolTipPlacement="BottomRight"
HorizontalContentAlignment="Stretch"
VerticalContentAlignment="Stretch"
ScrollViewer.VerticalScrollBarVisibility="Hidden"
/>
</DockPanel>
</Grid>
</UserControl>