Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
CarJem committed Jun 13, 2021
1 parent f8f6a2c commit 47201f8
Show file tree
Hide file tree
Showing 57 changed files with 7,119 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
obj/
bin/
Binary file added .vs/BedrockLauncher.Installer/v16/.suo
Binary file not shown.
7 changes: 7 additions & 0 deletions App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
29 changes: 29 additions & 0 deletions App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<Application x:Class="BedrockLauncher.Installer.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:bl="clr-namespace:BedrockLauncher.Installer.Language"
xmlns:local="clr-namespace:BedrockLauncher.Installer"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<bl:LanguageDictionary Source="/BedrockLauncher.Installer;component/Resources/lang/lang.en-US.xaml"></bl:LanguageDictionary>
<ResourceDictionary Source="Resources/styles/style.xaml"/>
<ResourceDictionary Source="Resources/styles/button.xaml"/>
<ResourceDictionary Source="Resources/styles/checkbox.xaml"/>
<ResourceDictionary Source="Resources/styles/radiobutton.xaml"/>
<ResourceDictionary Source="Resources/styles/combobox.xaml"/>
<ResourceDictionary Source="Resources/styles/contextmenu.xaml"/>
<ResourceDictionary Source="Resources/styles/menuitems.xaml"/>
<ResourceDictionary Source="Resources/styles/listview.xaml"/>
<ResourceDictionary Source="Resources/styles/textbox.xaml"/>
<ResourceDictionary Source="Resources/styles/textblock.xaml"/>
<ResourceDictionary Source="Resources/styles/frame.xaml"/>
<ResourceDictionary Source="Resources/styles/scrollbars.xaml"/>
<ResourceDictionary Source="Resources/styles/tabbar.xaml"/>
<ResourceDictionary Source="Resources/styles/expander.xaml"/>
<ResourceDictionary Source="Resources/styles/richtextbox.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
21 changes: 21 additions & 0 deletions App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;

namespace BedrockLauncher.Installer
{
/// <summary>
/// Логика взаимодействия для App.xaml
/// </summary>
public partial class App : Application
{
public App()
{
BedrockLauncher.Installer.Language.LanguageManager.Init();
}
}
}
Loading

0 comments on commit 47201f8

Please sign in to comment.