Add files via upload

This commit is contained in:
celisej567
2021-07-07 14:56:09 +03:00
committed by GitHub
parent 2aef29ef39
commit 0ef19cd590
69 changed files with 1412 additions and 62 deletions

12
Icons/Hide.xaml Normal file
View File

@@ -0,0 +1,12 @@
<UserControl x:Class="Launcher.Icons.Hide"
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:Launcher.Icons"
mc:Ignorable="d" Height="30" Width="30" Background="#4CFFFFFF">
<Grid>
<Frame HorizontalAlignment="Left" Height="2" VerticalAlignment="Top" Width="18" Background="White" Margin="6,14,0,0" RenderTransformOrigin="0.5,0.5"/>
</Grid>
</UserControl>

28
Icons/Hide.xaml.cs Normal file
View File

@@ -0,0 +1,28 @@
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;
namespace Launcher.Icons
{
/// <summary>
/// Логика взаимодействия для Exit.xaml
/// </summary>
public partial class Hide : UserControl
{
public Hide()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,30 @@
<UserControl x:Class="Launcher.Icons.BiggerExit"
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:Launcher.Icons"
mc:Ignorable="d" Height="30" Width="30" Background="#4CFFFFFF">
<Grid>
<Frame HorizontalAlignment="Left" Height="4" VerticalAlignment="Top" Width="22" Background="White" Margin="4,13,0,0" RenderTransformOrigin="0.5,0.5">
<Frame.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="-46.049"/>
<TranslateTransform/>
</TransformGroup>
</Frame.RenderTransform>
</Frame>
<Frame HorizontalAlignment="Left" Height="22" VerticalAlignment="Top" Width="4" Background="White" Margin="13,4,0,0" RenderTransformOrigin="0.5,0.5">
<Frame.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="-46.049"/>
<TranslateTransform/>
</TransformGroup>
</Frame.RenderTransform>
</Frame>
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
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;
namespace Launcher.Icons
{
/// <summary>
/// Логика взаимодействия для Exit.xaml
/// </summary>
public partial class BiggerExit : UserControl
{
public BiggerExit()
{
InitializeComponent();
}
}
}

View File

@@ -0,0 +1,12 @@
<UserControl x:Class="Launcher.Icons.BiggerHide"
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:Launcher.Icons"
mc:Ignorable="d" Height="30" Width="30" Background="#4CFFFFFF">
<Grid>
<Frame HorizontalAlignment="Left" Height="4" VerticalAlignment="Top" Width="24" Background="White" Margin="3,13,0,0" RenderTransformOrigin="0.5,0.5"/>
</Grid>
</UserControl>

View File

@@ -0,0 +1,28 @@
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;
namespace Launcher.Icons
{
/// <summary>
/// Логика взаимодействия для Exit.xaml
/// </summary>
public partial class BiggerHide : UserControl
{
public BiggerHide()
{
InitializeComponent();
}
}
}