-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathDockerUI.xaml
More file actions
20 lines (18 loc) · 1.03 KB
/
DockerUI.xaml
File metadata and controls
20 lines (18 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<UserControl x:Class="Latex4CorelDraw.DockerUI"
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"
xmlns:local="clr-namespace:Latex4CorelDraw"
mc:Ignorable="d"
MinWidth="225">
<Grid Margin="0,0,0,0">
<StackPanel>
<Label Content="Latex" />
<Button Content="Add latex" Margin="2,2,2,2" Name="btn_addLatex" Click="btn_addLatex_Click"/>
<Button Content="Edit latex" Margin="2,2,2,2" Name="btn_editLatex" Click="btn_editLatex_Click"/>
<Button Content="Add equation" Margin="2,2,2,2" Name="btn_addEquation" Click="btn_addEquation_Click"/>
<Button Content="Add eqnarray" Margin="2,2,2,2" Name="btn_addEqnarray" Click="btn_addEqnarray_Click"/>
</StackPanel>
</Grid>
</UserControl>