blob: f2fecf89bc02584d00fe37fcb5d235aaa33621ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
################################################################################
# Automatically-generated file. Do not edit!
################################################################################
SHELL = cmd.exe
# Add inputs and outputs from these tool invocations to the build variables
C_SRCS += \
../Drivers/On_Chip_Flash/Flashstore.c
C_DEPS += \
./Drivers/On_Chip_Flash/Flashstore.d
OBJS += \
./Drivers/On_Chip_Flash/Flashstore.obj
OBJS__QUOTED += \
"Drivers\On_Chip_Flash\Flashstore.obj"
C_DEPS__QUOTED += \
"Drivers\On_Chip_Flash\Flashstore.d"
C_SRCS__QUOTED += \
"../Drivers/On_Chip_Flash/Flashstore.c"
l.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; 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 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 Tango.SharedUI;
namespace Tango.MachineStudio.Developer.Views
{
/// <summary>
/// Interaction logic for DeveloperView.xaml
/// </summary>
public partial class MainView : UserControl, IMainView
{
private bool _loaded;
public static MainView Instance { get; set; }
public MainView()
{
InitializeComponent();
Instance = this;
Loaded += (x, y) =>
{
if (!_loaded)
{
_loaded = true;
ViewAttached?.Invoke(this, this);
}
};
}
public event EventHandler<IView> ViewAttached;
}
}
|