-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInputDialog.xaml
More file actions
22 lines (20 loc) · 1.25 KB
/
Copy pathInputDialog.xaml
File metadata and controls
22 lines (20 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Window x:Class="ChatGPTExtension.InputDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="InputDialog" Height="150" Width="400"
WindowStartupLocation="CenterScreen"
Background="#333333" Foreground="#FFFFFF">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Label x:Name="lblQuestion" Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,10,0,0" Foreground="#FFFFFF"/>
<TextBox x:Name="txtAnswer" Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Top" Width="360" Margin="10,10,0,0" Background="#444444" Foreground="#FFFFFF"/>
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Bottom" Margin="0,0,10,10">
<Button Content="OK" Width="75" Click="btnDialogOk_Click" Background="#555555" Foreground="#FFFFFF" Margin="0,0,10,0"/>
<Button Content="Cancel" Width="75" Click="btnDialogCancel_Click" Background="#555555" Foreground="#FFFFFF"/>
</StackPanel>
</Grid>
</Window>