12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using Janus.Windows.UI.Dock;
- namespace IControls_FireManager
- {
-
- public static class _Frame
- {
-
-
- public static void Create(UIPanelInnerContainer Container, Form CreateView)
- {
-
- CreateView.TopLevel = false;
-
- CreateView.ControlBox = false;
-
- CreateView.FormBorderStyle = FormBorderStyle.None;
-
- Container.Controls.Add(CreateView);
-
- CreateView.Dock = DockStyle.Fill;
-
- CreateView.Show();
-
- }
- }
- }
|