System.Windows.Forms.Control.SendToBack()

Here are the examples of the csharp api class System.Windows.Forms.Control.SendToBack() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

27 Examples 7

1. Example

Project: MapleShark
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

2. Example

Project: dp2
Source File: BackgroundForm.cs
private void BackgroundForm_Activated(object sender, EventArgs e)
        {
            this.SendToBack();
        }

3. Example

Project: dockpanelsuite
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

4. Example

Project: FunctionHacker
Source File: formMain.cs
private void windowFinder_MouseDown(object sender, MouseEventArgs e)
        {
            //hide GUI if process runnign in background
            SendToBack();
        }

5. Example

Project: ArnoldSimulator
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

6. Example

Project: lua-tilde
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

7. Example

Project: NanUI
Source File: Formium.cs
protected void HideSplash()
		{
			this.RequireUIThread(() =>
			{

				splashPanel.Visible = false;
				splashPanel.SendToBack();
				browserCore.SetToTop();
			});
		}

8. Example

Project: Nexus-Mod-Manager
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

9. Example

Project: OpenLiveWriter
Source File: BlogPostListBox.cs
private void HideEmptyPostListControl()
        {
            EmptyPostListControl.SendToBack();
        }

10. Example

Project: OpenLiveWriter
Source File: GetRecentPostsProgressControl.cs
public void Stop()
        {
            if (!progressAnimatedBitmap.IsDisposed)
            {
                if (progressAnimatedBitmap.Running)
                    progressAnimatedBitmap.Stop();
            }

            SendToBack();
        }

11. Example

Project: ynoteclassic
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((ModifierKeys & Keys.Shi/n ..... /n //View Source file for more details /n }

12. Example

Project: SquareOne
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

13. Example

Project: ceptr
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

14. Example

Project: HOPE
Source File: DockWindow.cs
void ISplitterDragSource.MoveSplitter(int offset)
        {
            if ((Control.ModifierKeys & /n ..... /n //View Source file for more details /n }

15. Example

Project: MemoScope.Net
Source File: ProcessModule.cs
private void btnFindProcess_MouseDown(object sender, MouseEventArgs e)
        {
            var form = GetMainForm();
            CurrentWindowState = form.WindowState;
            form.WindowState = FormWindowState.Normal;
            form.SendToBack();
            CurrentCursor = Cursor.Current;
            Cursor.Current = Cursors.UpArrow;
        }

16. Example

Project: 32feet
Source File: FormConsole.cs
private void SetupPauseControls()
        {
            this.labelPause.SendToBack();
            ShowPause(false, null);
        }

17. Example

Project: Nexus-Mod-Manager
Source File: CplConditionEditor.cs
protected override void OnControlAdded(ControlEventArgs e)
		{
			base.OnControlAdded(e);
			p_radSelector.SendToBack();
		}

18. Example

Project: NFirmwareEditor
Source File: MultiPanel.cs
public override void Add(Control value)
		{
			if (value == null) throw new ArgumentNullException("value", "Tried to add a null value to the MultiPanelPagesCollection.");
			var p = value as MultiPanelPage;
			if (p == null) throw new ArgumentException("Tried to add a non-MultiPanelPage control to the MultiPanelPagesCollection", "value");
			p.SendToBack();
			base.Add(p);
		}

19. Example

Project: dot-net-transitions
Source File: Form1.cs
private void cmdSwap_Click(object sender, EventArgs e)
        {
            // We swap over the group-boxes that show the "Bounce" and 
            // "Throw and Catch" transitions. The active one is animated 
            // left off the screen and the inactive one is animated right
            // onto the screen...

            // We work out which box is currently on screen and
            // which is off screen...
            Control ctrlOnScreen, ctrlOffScreen;
            if (gbBounce.Left == GROUP_BOX_LEFT)
            {
                ctrlOnScreen = gbBounce;
                ctrlOffScreen = gbThrowAndCatch;
            }
            else
            {
                ctrlOnScreen = gbThrowAndCatch;
                ctrlOffScreen = gbBounce;
            }
            ctrlOnScreen.SendToBack();
            ctrlOffScreen.BringToFront();

            // We create a transition to animate the two boxes simultaneously. One is
            // animated onto the screen, the other off the screen.

            // The ease-in-ease-out transition acclerates the rate of change for the 
            // first half of the animation, and decelerates during the second half.

            Transition t = new Transition(new TransitionType_EaseInEaseOut(1000));
            t.add(ctrlOnScreen, "Left", -1 * ctrlOnScreen.Width);
            t.add(ctrlOffScreen, "Left", GROUP_BOX_LEFT);
            t.run();
        }

20. Example

Project: dot-net-transitions
Source File: Form1.cs
private void cmdSwap_Click(object sender, EventArgs e)
        {
            // We swap over the group-boxes that show the "Bounce" and 
            // "Throw and Catch" transitions. The active one is animated 
            // left off the screen and the inactive one is animated right
            // onto the screen...

            // We work out which box is currently on screen and
            // which is off screen...
            Control ctrlOnScreen, ctrlOffScreen;
            if (gbBounce.Left == GROUP_BOX_LEFT)
            {
                ctrlOnScreen = gbBounce;
                ctrlOffScreen = gbThrowAndCatch;
            }
            else
            {
                ctrlOnScreen = gbThrowAndCatch;
                ctrlOffScreen = gbBounce;
            }
            ctrlOnScreen.SendToBack();
            ctrlOffScreen.BringToFront();

            // We create a transition to animate the two boxes simultaneously. One is
            // animated onto the screen, the other off the screen.

            // The ease-in-ease-out transition acclerates the rate of change for the 
            // first half of the animation, and decelerates during the second half.

            Transition t = new Transition(new TransitionType_EaseInEaseOut(1000));
            t.add(ctrlOnScreen, "Left", -1 * ctrlOnScreen.Width);
            t.add(ctrlOffScreen, "Left", GROUP_BOX_LEFT);
            t.run();
        }

21. Example

Project: Histacom2
Source File: WinXPBad.cs
private void Desktop_Load(object sender, EventArgs e)
        {
            if (currentTheme.default/n ..... /n //View Source file for more details /n }

22. Example

Project: JexusManager
Source File: Areo.cs
public static void ExtendFrameIntoClientArea ( this Form form, Control glassArea ) {
			if ( IsGlassSupported ) {
				if ( glassArea.Dock != DockStyle.Top ) {
					glassArea.Dock = DockStyle.Top;
					glassArea.SendToBack ();
				}
				glassArea.BackColor = Color.Transparent;
				glassArea.Resize += delegate ( object sender, EventArgs e ) {
					form.Invalidate ( glassArea.Region, true );
				};

				form.Paint += delegate ( object sender, PaintEventArgs e ) {
					using ( SolidBrush blackBrush = new SolidBrush ( Color.Black ) ) {
						e.Graphics.FillRectangle ( blackBrush, glassArea.ClientRectangle );
					}
				};

				MARGINS marg;
				marg.Top = glassArea.Height;
				marg.Left = 0;
				marg.Right = 0;
				marg.Bottom = 0;
				DwmExtendFrameIntoClientArea ( form.Handle, ref marg );

				glassArea.SetGlassWindowDragable ();
			}
		}

23. Example

Project: subtitleedit
Source File: VideoPlayerContainer.cs
private Control MakeControlsPanel()
        {
            _panelcontrols = new Panel { Left = 0, Hei/n ..... /n //View Source file for more details /n }

24. Example

Project: P
Source File: FormStuff.cs
public static Form CreateForm(GViewer gviewer)
        {
            GViewer = gviewer;
            var form = new Form();
            form.SuspendLayout();
            form.Controls.Add(gviewer);
            gviewer.Dock = DockStyle.Fill;
            gviewer.SendToBack();
            form.StartPosition = FormStartPosition.CenterScreen;
            form.Size = new System.Drawing.Size(Screen.PrimaryScreen.WorkingArea.Width,
                              Screen.PrimaryScreen.WorkingArea.Height);
            var statusStrip = new StatusStrip();
            var toolStribLbl = new ToolStripStatusLabel("test");
            statusStrip.Items.Add(toolStribLbl);
            form.Controls.Add(statusStrip);
            form.MainMenuStrip = GetMainMenuStrip();
            form.Controls.Add(form.MainMenuStrip);
            form.ResumeLayout();
            form.Load += form_Load;
            return form;
        }

25. Example

Project: Histacom2
Source File: Win95.cs
private void Desktop_Load(object sender, EventArgs e)
        {
            if (currentTheme.default/n ..... /n //View Source file for more details /n }

26. Example

Project: Histacom2
Source File: Win98.cs
private void Desktop_Load(object sender, EventArgs e)
        {
            if (!CurrentSave.FTime95/n ..... /n //View Source file for more details /n }

27. Example

Project: MapleShark
Source File: SplitViewControl.cs
private void DoResize()
        {
            //			int OldWidth=Horizontal.Width ;
            //			/n ..... /n //View Source file for more details /n }