当前位置: 首页>>代码示例>>C#>>正文


C# Form2.BringToFront方法代码示例

本文整理汇总了C#中Form2.BringToFront方法的典型用法代码示例。如果您正苦于以下问题:C# Form2.BringToFront方法的具体用法?C# Form2.BringToFront怎么用?C# Form2.BringToFront使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Form2的用法示例。


在下文中一共展示了Form2.BringToFront方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: boHypo71_Click

 private void boHypo71_Click(object sender, EventArgs e)
 {
     // hace llamado al formulario2, el cual corresponde a las lecturas de arribos para la
       // localizacion con el Hypo71.
     Form2 frm2 = new Form2(this);
     frm2.Show();
     frm2.BringToFront();
 }
开发者ID:GeroLopez,项目名称:Proceso20-Documentaci-n,代码行数:8,代码来源:Form1.cs

示例2: showChangesPopUp

 private void showChangesPopUp()
 {
     Form2 f = new Form2();
        f.Show();
        f.BringToFront();
 }
开发者ID:Marcx87,项目名称:AutoCasterPro,代码行数:6,代码来源:Form1.cs

示例3: panel1_MouseUp

        private void panel1_MouseUp(object sender, MouseEventArgs e)
        {
            // el panel1 es donde se dibuja la traza activa. Aqui se busca saber si el raton se desplaza
            // entre el hundido y el soltado del boton del raton. Si se activa el boton izquierdo y se
            // desplaza el raton, se entra al panel de clasificacion ( si no se desplaza, no se hace nada
            // por el momento). Con el boton derecho, se indica el tiempo, absoluto si no hay desplazo o
            // el intervalo correspondiente al arrastre.

            int    xf,yf,i,j,k,nuar,j1,j2,jb,jj,byf,dfcu,mmx,mmn;
            double fax,fay,fcra;
            long   tii1=0;
            double dif=0,t1,t2,ttt;
            string ss="",lin="",ee="",ca="";
            bool   si=false;

            NoMostrar = true;
            moveresp = false;
            if (panel2.Visible == true)
            {
                panel2.Size = new Size(219, 74);
                panel2.Location = new Point(243, 254);
                panel2.Visible = false;
            }
            if (estado==false) return; // la variable estado es false si no existe ninguna lectura de trazas en memoria.
            bxf = e.X;
            byf = e.Y;
            xf = panel1.Size.Width;
            yf = panel1.Size.Height;
            jb = tim[id].Length - 1; // tiempo de la ultima muestra
            if (tim[id][jb-1] <= 0)
            {
                do
                {
                    jb -= 1;
                    if (tim[id][jb - 1] > 0) break;
                } while (jb > 0);
                jb -= 1;
            }
            if (jb < 2) return;
            jj = 1 + (int)((tim[id][jb] - timin) / dur);
            if (esp == 0) fay = (yf - 45.0) / jj; // esp es la variable que guarda el espaciamiento entre lineas.
            else fay = esp;
            fax = dur / xf;
            j1 = (int)((byi - 45.0) / fay); // se calcula cuantas lineas existen antes de la actual.
            t1 = timin + bxi * fax + j1 * dur; // se tiene en cuenta el tiempo de las lineas anteriores
            j2 = (int)((byf - 45.0) / fay);
            t2 = (timin + bxf * fax + j2 * dur);
            if (t2 < t1)
            {
                ttt = t1;
                t1 = t2;
                t2 = ttt;
            }
            // t1 es el tiempo inical del intervalo y t2 el tiempo final.
            tii1 = (long)(Fei+(t1*10000000.0));

            if (DR > 0)
            {
                if (fcnan[id] <= 0)
                {
                    ss = "NO hay Factor!..";
                    tip.IsBalloon = false;
                    tip.AutoPopDelay = 3000;
                    tip.SetToolTip(boDR, ss);
                    panelDR.Visible = false;
                    DR = 0;
                    boDR.BackColor = Color.Gold;
                    return;
                }
                tDR1 = t1;
                tDR2 = t2;
                if (checkBoxHz.Checked == true && DR==1) PromedioFiltrado();
                panelDR.Visible = true;
                panelDR.BringToFront();
                panelDR.Invalidate();
                return;
                /*if (DR == 1)
                {
                    if (checkBoxHz.Checked == true) PromedioFiltrado();
                    panelDR.Visible = true;
                    panelDR.BringToFront();
                    panelDR.Invalidate();
                    return;
                }
                else
                {
                    DibujoVelocidadDR(t1, t2);
                }*/
            }

            if (vista == true)
            {
                try
                {
                    splitContainer1.Visible = true;
                    splitContainer1.Location = new Point(1,1);
                    splitContainer1.Size = new Size(Width-100,Height-100);
                    tie1=t1;
                    backgroundWorker1.RunWorkerAsync();
                    return;
//.........这里部分代码省略.........
开发者ID:GeroLopez,项目名称:Proceso20-Documentaci-n,代码行数:101,代码来源:Form1.cs

示例4: PopForm2

        //Just hide first layout, by hiding group box, then pop form2 and assign to its closing event a function
        private void PopForm2()
        {
            //Test all controls
            box2.Hide();

            Form2 form2 = new Form2();
            form2.Location = new Point(100, 100);
            form2.BringToFront();

            form2.Show();

            //Assign function to event leave form
            form2.FormClosed += new FormClosedEventHandler(UpdateMenu_Form2Leave);

            //Disable menu items on this, form1
            menuItem1.Enabled = false;
            menuItem2.Enabled = false;
        }
开发者ID:ghitme,项目名称:timesheet,代码行数:19,代码来源:Form1.cs


注:本文中的Form2.BringToFront方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。