aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Logging/ViewModels/MainViewVM.cs
blob: 736bff5a2b109ea06b3e5bed9419d4c861f7c8c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Common;

namespace Tango.PPC.Logging.ViewModels
{
    public class MainViewVM : PPCViewModel
    {
        public override void OnApplicationStarted()
        {
            
        }
    }
}
span class="w"> double ScaleX { get; set; } /// <summary> /// Gets or sets the vertical scale factor. /// </summary> public double ScaleY { get; set; } /// <summary> /// Gets or sets the horizontal translate transformation. /// </summary> public double TranslateX { get; set; } /// <summary> /// Gets or sets the vertical translate transformation. /// </summary> public double TranslateY { get; set; } /// <summary> /// Initializes a new instance of the <see cref="GraphTransform"/> class. /// </summary> public GraphTransform() { ScaleX = 1; ScaleY = 1; TranslateX = 0; TranslateY = 0; } } }