blob: 4190337cea4c6169b712122ecd94b69528e3a030 (
plain)
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
|
<Window x:Class="Tango.AzureUtils.UI.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Tango.AzureUtils.UI"
mc:Ignorable="d"
Title="Azure Utils" Height="700" Width="1280">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="100"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<TextBlock VerticalAlignment="Center" Margin="10 0 0 0" FontSize="40">Azure Utils</TextBlock>
<Grid Grid.Row="1">
<TabControl Margin="10">
<TabItem Header="Environment Copy Wizard">
</TabItem>
</TabControl>
</Grid>
</Grid>
</Window>
|