Add files via upload

This commit is contained in:
celisej567
2021-07-07 12:24:19 +03:00
committed by GitHub
commit 2aef29ef39
45 changed files with 1475 additions and 0 deletions

47
MainWindow.xaml.cs Normal file
View File

@@ -0,0 +1,47 @@

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using SteamWorkshopLib;
namespace Launcher
{
/// <summary>
/// Логика взаимодействия для MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
WinResize winResize = new WinResize(this);
}
private void Exit_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
this.Close();
}
private void Label_MouseEnter(object sender, MouseEventArgs e)
{
this.startgame.Foreground = new SolidColorBrush(Color.FromArgb(255, 164, 164, 164));
}
private void startgame_MouseLeave(object sender, MouseEventArgs e)
{
this.startgame.Foreground = new SolidColorBrush(Color.FromArgb(255, 230, 230, 230));
}
}
}