mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 05:34:13 +00:00
alt wii
This commit is contained in:
parent
f10199aebe
commit
719a382d8c
7 changed files with 26 additions and 10 deletions
10
UWUVCI AIO WPF/Properties/Resources.Designer.cs
generated
10
UWUVCI AIO WPF/Properties/Resources.Designer.cs
generated
|
@ -310,6 +310,16 @@ namespace UWUVCI_AIO_WPF.Properties {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
internal static System.Drawing.Bitmap wii3New {
|
||||
get {
|
||||
object obj = ResourceManager.GetObject("wii3New", resourceCulture);
|
||||
return ((System.Drawing.Bitmap)(obj));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
|
||||
/// </summary>
|
||||
|
|
|
@ -193,6 +193,9 @@
|
|||
<data name="Wii2" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Wii2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="wii3New" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\wii3New.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
<data name="WiiIcon" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\WiiIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
|
||||
</data>
|
||||
|
|
BIN
UWUVCI AIO WPF/Resources/wii3New.png
Normal file
BIN
UWUVCI AIO WPF/Resources/wii3New.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 167 KiB |
|
@ -45,6 +45,6 @@
|
|||
<Label Content="Style:" Grid.Column="1" HorizontalAlignment="Left" Margin="15,87,0,0" VerticalAlignment="Top" Name="ws" Visibility="Hidden"/>
|
||||
<RadioButton Content="WiiWare" Grid.Column="1" HorizontalAlignment="Left" Margin="115,90,0,0" VerticalAlignment="Top" Foreground="Black" GroupName="wis" IsChecked="True" TabIndex="2" Width="73" Name="ww" Visibility="Hidden" Click="ww_Click"/>
|
||||
<RadioButton Content="Homebrew" Grid.Column="1" HorizontalAlignment="Left" Margin="202,90,-7,0" VerticalAlignment="Top" Foreground="Black" GroupName="wis" TabIndex="3" Width="81" Name="hb" Visibility="Hidden" Click="ww_Click"/>
|
||||
<RadioButton Content="Wii" Grid.Column="1" HorizontalAlignment="Left" Margin="56,90,0,0" VerticalAlignment="Top" Foreground="Black" GroupName="wis" IsChecked="True" TabIndex="3" Width="45" Name="wii" Visibility="Hidden" Click="ww_Click"/>
|
||||
<RadioButton Content="Wii" Grid.Column="1" HorizontalAlignment="Left" Margin="56,90,0,0" VerticalAlignment="Top" Foreground="Black" GroupName="wis" IsChecked="True" Visibility="Hidden" TabIndex="3" Width="54" Name="wii" Click="ww_Click"/>
|
||||
</Grid>
|
||||
</Window>
|
||||
|
|
|
@ -65,9 +65,9 @@ namespace UWUVCI_AIO_WPF.UI.Windows
|
|||
{
|
||||
bi.Frame = new Bitmap(Properties.Resources.Icon);
|
||||
hb.IsChecked = true;
|
||||
ww.Content = "Alt 2";
|
||||
hb.Content = "Default";
|
||||
wii.Content = "Alt 1";
|
||||
ww.Content = "Alt 1";
|
||||
hb.Content = "Alt 2";
|
||||
wii.Content = "GCN";
|
||||
ww.Visibility = Visibility.Visible;
|
||||
ws.Visibility = Visibility.Visible;
|
||||
hb.Visibility = Visibility.Visible;
|
||||
|
@ -359,18 +359,18 @@ namespace UWUVCI_AIO_WPF.UI.Windows
|
|||
{
|
||||
if (ww.IsChecked == true)
|
||||
{
|
||||
bi.Frame = new Bitmap(Properties.Resources.GCN_ICON3);
|
||||
bi.Frame = new Bitmap(Properties.Resources.GCN_ICON2);
|
||||
console = "WII";
|
||||
}
|
||||
else if (wii.IsChecked == true)
|
||||
{
|
||||
bi.Frame = new Bitmap(Properties.Resources.GCN_ICON2);
|
||||
console = "WII";
|
||||
bi.Frame = new Bitmap(Properties.Resources.Icon);
|
||||
console = "other";
|
||||
}
|
||||
else if (hb.IsChecked == true)
|
||||
{
|
||||
bi.Frame = new Bitmap(Properties.Resources.Icon);
|
||||
console = "other";
|
||||
bi.Frame = new Bitmap(Properties.Resources.GCN_ICON2);
|
||||
console = "WII";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -475,7 +475,7 @@ namespace UWUVCI_AIO_WPF.UI.Windows
|
|||
{
|
||||
switchs(Visibility.Visible);
|
||||
console = "other";
|
||||
bi.Frame = Properties.Resources.NDS;
|
||||
bi.Frame = Properties.Resources.wii3New;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -584,6 +584,9 @@
|
|||
<ItemGroup>
|
||||
<None Include="Resources\GCN ICON3.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Resources\wii3New.png" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Import Project="..\packages\MaterialDesignThemes.3.0.1\build\MaterialDesignThemes.targets" Condition="Exists('..\packages\MaterialDesignThemes.3.0.1\build\MaterialDesignThemes.targets')" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
|
|
Loading…
Reference in a new issue