Exemple #1
0
		void MainForm_Load(object sender, EventArgs e)
		{
			TreeTabScreen tts = new TreeTabScreen();
			ActionNodeData nd = new ActionNodeData();
			nd.Add(typeof(PIDForm).AssemblyQualifiedName, "Pid", true);
			nd.Add(typeof(UrlToolForm).AssemblyQualifiedName, "Url");
            nd.Add(typeof(RemoteExecForm).AssemblyQualifiedName, "Remote");
            nd.Add(typeof(CommonExecution).AssemblyQualifiedName, "Common");
			this.BeginEmbed();
			this.Embed(tts, EmbedType.Fill);
			this.EndEmbed();
			tts.LoadNodeData(nd);
		}
Exemple #2
0
		void MainForm_Load(object sender, EventArgs e)
		{
			TreeTabScreen tts = new TreeTabScreen();
			ActionNodeData nd = new ActionNodeData();
			nd.Add(typeof(ParserForm).AssemblyQualifiedName, "ParserForm", true);
			this.BeginEmbed();
			this.Embed(tts, EmbedType.Fill);
			this.EndEmbed();
			tts.LoadNodeData(nd);
		}
Exemple #3
0
        void MainForm_Load(object sender, EventArgs e)
        {
            TreeTabScreen  tts = new TreeTabScreen();
            ActionNodeData nd  = new ActionNodeData();

            nd.Add(typeof(ParserForm).AssemblyQualifiedName, "ParserForm", true);
            this.BeginEmbed();
            this.Embed(tts, EmbedType.Fill);
            this.EndEmbed();
            tts.LoadNodeData(nd);
        }
Exemple #4
0
		void MasterForm_Load(object sender, EventArgs e)
		{
			//ScannerScreen scanner = new ScannerScreen();
			TreeTabScreen treetab = new TreeTabScreen();
			Text = string.Concat(Text, " - ", Application.ProductVersion);
			this.BeginEmbed();
			this.Embed(treetab, EmbedType.Fill);
			this.EndEmbed();

			ActionNodeData tn = new ActionNodeData();
			tn.Add(typeof(ScannerScreen).FullName + ",Platform.Startup", "Basic");
			treetab.LoadNodeData(tn);
		}