Exemplo n.º 1
0
		public PanelBase(VisiblePanelControler controler, int index)
		{
			m_PanelControler = controler;
			m_PanelControler.PanelChanged += new PanelEvent(m_PanelControler_PanelChanged);
			
			this.Size = new System.Drawing.Size(700, 300);
			this.Location = new System.Drawing.Point(15, 15);
			this.ShowBackground = true;
			this.ShowBorder = true;
			this.RelitiveZIndex = index;
		}
Exemplo n.º 2
0
		public SpeedTestPanel(VisiblePanelControler controler, int index)
			: base(controler, index)
		{

		}