aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/Themes/Generic.xaml
blob: e3efa0c6a63ebc03046703340801e4233b2e51f3 (plain)
1
2
3
4
5
6
7
8
9
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:Tango.MachineStudio.UI"
    xmlns:controls="clr-namespace:Tango.MachineStudio.UI.Controls">
    
</ResourceDictionary>
.vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
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 static Tango.SharedUI.Controls.MultiTransitionControl;
using static Tango.SharedUI.Controls.NavigationControl;

namespace Tango.MachineStudio.UI.Views
{
    /// <summary>
    /// Interaction logic for ShutdownView.xaml
    /// </summary>
    public partial class ShutdownView : UserControl, INavigationView
    {
        public ShutdownView()
        {
            InitializeComponent();
        }

        public void OnNavigated()
        {
            progressRing.IsActive = true;
        }
    }
}