mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-23 19:43:03 +00:00
36 lines
2.6 KiB
XML
36 lines
2.6 KiB
XML
<Window x:Class="UWUVCI_AIO_WPF.UI.Windows.SDSetup"
|
|
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:UWUVCI_AIO_WPF"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
mc:Ignorable="d"
|
|
Title="MAIN" Height="175.197" Width="337.333" WindowStyle="None" WindowStartupLocation="CenterScreen" Foreground="White" Background="LightGray" ResizeMode="NoResize" Icon="/UWUVCI AIO WPF;component/b.ico" Closing="wind_Closing" Closed="wind_Closed">
|
|
<Grid Margin="0,0,-120,0">
|
|
<Grid Height="52" VerticalAlignment="Top" Margin="0,0,-111,0" MouseDown="MoveWindow">
|
|
<Grid.Background>
|
|
|
|
<VisualBrush TileMode="Tile" Viewport="0,0,0.0965,1">
|
|
<VisualBrush.Visual>
|
|
<Image Source="/UI/Images/bg maybe wpf.png"></Image>
|
|
</VisualBrush.Visual>
|
|
</VisualBrush>
|
|
|
|
|
|
</Grid.Background>
|
|
<TextBlock Name="tbTitleBar" HorizontalAlignment="Left" Margin="0,8,0,0" TextWrapping="Wrap" Text="SD Setup" VerticalAlignment="Top" FontSize="25" Width="332" TextAlignment="Center"/>
|
|
</Grid>
|
|
<Button Content="Button" HorizontalAlignment="Left" Margin="311,6,0,0" VerticalAlignment="Top" Width="18" Background="{x:Null}" BorderBrush="{x:Null}" Height="25" Click="Window_Close" Name="close" MouseEnter="close_MouseEnter" MouseLeave="close_MouseLeave"/>
|
|
<TextBlock HorizontalAlignment="Left" Margin="315,7,0,0" TextWrapping="Wrap" Text="X" VerticalAlignment="Top" Foreground="White" FontSize="16" IsHitTestVisible="False"/>
|
|
<ComboBox HorizontalAlignment="Left" Margin="10,85,0,0" VerticalAlignment="Top" Width="313" Name="sd" Foreground="Black" SelectionChanged="sd_SelectionChanged"/>
|
|
<TextBlock HorizontalAlignment="Left" Margin="10,61,0,0" TextWrapping="Wrap" Text="Choose your SD Card:" VerticalAlignment="Top" Foreground="Black" />
|
|
<Button Content="Setup SD Card" HorizontalAlignment="Left" Margin="199,129,0,0" VerticalAlignment="Top" Width="124" Height="28" IsEnabled="False" Name="setup" Click="setup_Click"/>
|
|
<Label Content="" Margin="10,131,263,-131" Name="status"/>
|
|
<Border BorderThickness="1.5,1.5,1.5,1.5" BorderBrush="#FF2196F3" HorizontalAlignment="Left" Height="175" VerticalAlignment="Top" Width="337">
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
|
</Window>
|
|
|