mirror of
https://github.com/celisej567/Launcher.git
synced 2026-09-17 20:12:06 +03:00
Add files via upload
This commit is contained in:
31
Icons/Exit.xaml
Normal file
31
Icons/Exit.xaml
Normal file
@@ -0,0 +1,31 @@
|
||||
<UserControl x:Class="Launcher.Icons.Exit"
|
||||
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">
|
||||
<Frame.RenderTransform>
|
||||
<TransformGroup>
|
||||
<ScaleTransform/>
|
||||
<SkewTransform/>
|
||||
<RotateTransform Angle="-46.049"/>
|
||||
<TranslateTransform/>
|
||||
</TransformGroup>
|
||||
</Frame.RenderTransform>
|
||||
</Frame>
|
||||
<Frame HorizontalAlignment="Left" Height="18" VerticalAlignment="Top" Width="2" Background="White" Margin="14,6,0,0" RenderTransformOrigin="0.5,0.5">
|
||||
<Frame.RenderTransform>
|
||||
<TransformGroup>
|
||||
<ScaleTransform/>
|
||||
<SkewTransform/>
|
||||
<RotateTransform Angle="-46.049"/>
|
||||
<TranslateTransform/>
|
||||
</TransformGroup>
|
||||
</Frame.RenderTransform>
|
||||
</Frame>
|
||||
|
||||
</Grid>
|
||||
</UserControl>
|
||||
28
Icons/Exit.xaml.cs
Normal file
28
Icons/Exit.xaml.cs
Normal 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 Exit : UserControl
|
||||
{
|
||||
public Exit()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user