-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputWindow.xaml
16 lines (16 loc) · 879 Bytes
/
InputWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="NovaSFTP2.InputWindow"
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:NovaSFTP2"
mc:Ignorable="d"
Title="InputWindow" Height="130" Width="300" ResizeMode="NoResize" Icon="/icon1.png">
<StackPanel>
<TextBox x:Name="txtInput" Margin="10" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<Button x:Name="btnOk" Content="Ok" IsDefault="True" Margin="10" Padding="10" Click="btnOk_Click" />
<Button x:Name="btnCancel" Content="Cancel" IsCancel="True" Margin="10" Padding="10" Click="btnCancel_Click" />
</StackPanel>
</StackPanel>
</Window>