2021-05-25 06:44:50 +00:00
|
|
|
<Window x:Name="InstallerWindow" x:Class="EZPPClient_Installer.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:EZPPClient_Installer"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Title="EZPPClient Installer" Height="232.051" Width="525.487"
|
|
|
|
xmlns:ui="http://schemas.modernwpf.com/2019"
|
|
|
|
ui:WindowHelper.UseModernWindowStyle="True" ResizeMode="CanMinimize" Icon="circle_new.ico" Topmost="True" WindowStartupLocation="CenterScreen">
|
|
|
|
<ui:SimpleStackPanel Margin="12" Spacing="24">
|
2021-05-25 09:04:08 +00:00
|
|
|
<CheckBox x:Name="linkFoldersCheckbox" Content="Link Song and Skins Folder" HorizontalAlignment="Stretch" Height="32" VerticalAlignment="Top" Margin="150,62,150,-62" IsChecked="True" />
|
2021-05-25 06:44:50 +00:00
|
|
|
<TextBox x:Name="folderTextbox" HorizontalAlignment="Left" Height="32" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="422" Margin="10,-34,0,0" IsReadOnly="true"/>
|
2021-05-25 09:04:08 +00:00
|
|
|
<Button x:Name="InstallButton" Content="Install" HorizontalAlignment="Stretch" Height="32" VerticalAlignment="Bottom" Margin="176,0,176,-58" Style="{StaticResource AccentButtonStyle}" Click="Install_Click"/>
|
2021-05-25 06:44:50 +00:00
|
|
|
<Label HorizontalAlignment="Left" Height="19" VerticalAlignment="Top" Width="149" Margin="360,59,-12,-59" Cursor="Hand" RenderTransformOrigin="0.492,0.509">
|
|
|
|
<TextBlock Height="19" Width="149">
|
|
|
|
<Hyperlink NavigateUri="https://ez-pp.farm" RequestNavigate="Hyperlink_RequestNavigate"><Run Text="Copyright @ EZPPFarm"/></Hyperlink>
|
|
|
|
</TextBlock>
|
|
|
|
</Label>
|
|
|
|
<Button Content="..." HorizontalAlignment="Stretch" Height="32" VerticalAlignment="Top" Margin="437,-125,10,0" Click="Browse_Click"/>
|
2021-05-25 09:04:08 +00:00
|
|
|
<Button x:Name="Uninstall_Button" Content="Uninstall" HorizontalAlignment="Stretch" Height="31" VerticalAlignment="Bottom" Margin="176,-28,176,-3" Click="Install_Click" Background="#CCCB3737" Foreground="White" Visibility="Hidden"/>
|
2021-05-25 06:44:50 +00:00
|
|
|
</ui:SimpleStackPanel>
|
|
|
|
</Window>
|