-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathDeleteRunbookDialog.xaml
20 lines (20 loc) · 1.25 KB
/
DeleteRunbookDialog.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Window x:Class="AutomationISE.DeleteRunbookDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Delete Runbook" SizeToContent="WidthAndHeight" WindowStartupLocation="CenterScreen">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label x:Name="PromptLabel" Content="Delete runbook from where?" Margin="10,10,10,0" Grid.Column="0" Grid.Row="0"/>
<StackPanel Grid.Row="3" Grid.Column="0" Orientation="Horizontal" HorizontalAlignment="Center">
<Button x:Name="LocalButton" Content="Local Disk Only" IsDefault="True" Click="LocalButton_Click" Margin="10,10,0,10" Width="135" Grid.Row="1" />
<Button x:Name="CloudButton" Content="Cloud and Local Disk" Click="CloudButton_Click" Margin="10,10,0,10" Width="135" Grid.Row="1" />
<Button x:Name="CancelButton" Content="Cancel" Margin="10,10,10,10" IsCancel="True" Width="135" Grid.Row="1" />
</StackPanel>
</Grid>
</Window>