mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-23 11:33:03 +00:00
20 lines
1.7 KiB
XML
20 lines
1.7 KiB
XML
<Page x:Class="UWUVCI_AIO_WPF.UI.Frames.Path.Paths"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:UWUVCI_AIO_WPF.UI.Frames.Path"
|
|
mc:Ignorable="d"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
d:DesignHeight="600" d:DesignWidth="1130"
|
|
Title="Paths" materialDesign:ShadowAssist.CacheMode="{x:Null}">
|
|
|
|
<Grid DataContext="{StaticResource mvm}">
|
|
<TextBox materialDesign:HintAssist.Hint="PATH TO STORE DOWNLOADED BASES" Style="{StaticResource MaterialDesignFloatingHintTextBox}" Margin="234,215,420,340" Background="{x:Null}" Foreground="Black" SelectionBrush="#FF00C3D7" CaretBrush="#FF21C3F3" FontSize="18" IsReadOnly="True" Focusable="False" Text="{Binding BaseStore}"/>
|
|
<TextBox materialDesign:HintAssist.Hint="PATH TO STORE INJECTS" Style="{StaticResource MaterialDesignFloatingHintTextBox}" Margin="234,288,420,266" Background="{x:Null}" Foreground="Black" SelectionBrush="#FF00C3D7" CaretBrush="#FF21C3F3" FontSize="18" IsReadOnly="True" Focusable="False" Text="{Binding InjectStore}"/>
|
|
<Button Content="Set Path" HorizontalAlignment="Left" Margin="754,228,0,0" VerticalAlignment="Top" Width="126" Click="Button_Click"/>
|
|
<Button Content="Set Path" HorizontalAlignment="Left" Margin="754,302,0,0" VerticalAlignment="Top" Width="127" Click="Button_Click_1"/>
|
|
<Button Content="Back" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="82" Click="Button_Click_2"/>
|
|
|
|
</Grid>
|
|
</Page>
|