/WPF Dialogs for .Net 3.5/WPF Dialogs for .Net 3.5/Dialogs/DeleteDialog.xaml
XAML | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | fc5480637acc42c84e094c35e016d4a2 MD5 | raw file
1<Window x:Class="WPF_Dialogs.Dialogs.DeleteDialog" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 xmlns:custom="clr-namespace:WPF_Dialogs.Custom_Controls" 5 Title="Create a new Folder" Height="107" Width="195" ResizeMode="NoResize"> 6 <Grid Width="176"> 7 <Label Content="Are you sure?" Height="28" HorizontalAlignment="Left" Margin="12,12,0,0" Name="labelText" VerticalAlignment="Top" /> 8 <custom:DialogButton Content="Yes" DialogResult="OK" Click="DialogButton_clicked" x:Name="buttonOK" Margin="12,40,0,0" Height="23" VerticalAlignment="Top" TabIndex="2" HorizontalAlignment="Left" Width="75" /> 9 <custom:DialogButton Content="No" DialogResult="Cancel" Click="DialogButton_clicked" x:Name="buttonCancel" Margin="93,40,0,0" Height="23" VerticalAlignment="Top" TabIndex="3" HorizontalAlignment="Left" Width="75" /> 10 </Grid> 11</Window> 12