2023-06-15 01:35:37 +00:00
|
|
|
<Window x:Class="NetTunnelApp.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:NetTunnelApp"
|
|
|
|
mc:Ignorable="d"
|
2023-06-15 06:16:52 +00:00
|
|
|
Title="MainWindow" Height="450" Width="800">
|
2023-06-15 01:35:37 +00:00
|
|
|
<Grid>
|
2023-06-15 06:16:52 +00:00
|
|
|
<Button Content="Button" HorizontalAlignment="Left" Margin="68,69,0,0" VerticalAlignment="Top" Height="48" Width="100" Click="Button_Click"/>
|
|
|
|
|
2023-06-15 01:35:37 +00:00
|
|
|
</Grid>
|
2023-06-15 06:16:52 +00:00
|
|
|
</Window>
|