You've already forked UWP-Visual-Asset-Generator
mirror of
https://github.com/izzy2lost/UWP-Visual-Asset-Generator.git
synced 2026-03-26 18:15:27 -07:00
33 lines
951 B
C#
33 lines
951 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.IO;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Runtime.InteropServices.WindowsRuntime;
|
|||
|
|
using Windows.Foundation;
|
|||
|
|
using Windows.Foundation.Collections;
|
|||
|
|
using Windows.UI.Xaml;
|
|||
|
|
using Windows.UI.Xaml.Controls;
|
|||
|
|
using Windows.UI.Xaml.Controls.Primitives;
|
|||
|
|
using Windows.UI.Xaml.Data;
|
|||
|
|
using Windows.UI.Xaml.Input;
|
|||
|
|
using Windows.UI.Xaml.Media;
|
|||
|
|
using Windows.UI.Xaml.Navigation;
|
|||
|
|
|
|||
|
|
// The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236
|
|||
|
|
|
|||
|
|
namespace UWP_Visual_Asset_Generator.UserControls
|
|||
|
|
{
|
|||
|
|
public sealed partial class GettingStartedUserControl : UserControl
|
|||
|
|
{
|
|||
|
|
public GettingStartedUserControl()
|
|||
|
|
{
|
|||
|
|
this.InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void Btn_Hide_Click(object sender, RoutedEventArgs e)
|
|||
|
|
{
|
|||
|
|
App.mainViewModel.ShowGettingStartedControl = false;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|