aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Templates/Class.cshtml
blob: 693fe9136ec1a504228adc3b7cab83b97a4e5b49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
    @(Model.GetAttributesString())
    @(Model.GetModifierString()) class @(Model.Name) @(Model.InheritsFrom.Count > 0 ? " : " + String.Join(", ",Model.InheritsFrom) : null)
    {
        @foreach (var prop in Model.Properties)
        {
            <div>@prop.GenerateCode()</div>
        }

        @foreach (var dp in Model.DependencyProperties)
        {
            <div>@dp.GenerateCode()</div>
        }

        @foreach (var method in Model.Methods)
        {
            <div>@method.GenerateCode()</div>
        }
    }
background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .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 Tango.Core;

namespace Tango.MachineStudio.Common.Notifications
{
    public class BarItem : ExtendedObject, IDisposable
    {
        private INotificationProvider _notificationProvider;

        public FrameworkElement Element { get; set; }

        public BarItem(INotificationProvider notificationProvider)
        {
            _notificationProvider = notificationProvider;
        }

        public BarItem(INotificationProvider notificationProvider, FrameworkElement element) : this(notificationProvider)
        {
            Element = element;
        }

        /// <summary>
        /// Removed this item from the queue.
        /// </summary>
        public void Pop()
        {
            _notificationProvider.PopBarItem(this);
        }

        /// <summary>
        /// Pushes this item to the queue.
        /// </summary>
        public void Push()
        {
            _notificationProvider.PushBarItem(this);
        }

        /// <summary>
        /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
        /// </summary>
        public void Dispose()
        {
            Pop();
        }
    }
}