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


C# Main.Show方法代码示例

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


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

示例1: LoginSuccess

 public void LoginSuccess()
 {
     //(new Main(this.GetViewModel())).Show();
     Main m = new Main();
     m.Init(GetViewModel());
     m.Show();
     this.Close();
 }
开发者ID:ZERUELX,项目名称:GestionDocumental20140711,代码行数:8,代码来源:UserLoginView.xaml.cs

示例2: ShowMainWindow

        void ShowMainWindow()
        {
            MainViewModel viewModel = new MainViewModel();

            Main mainWindow = new Main();
            mainWindow.DataContext = viewModel;

            MainWindow = mainWindow;
            mainWindow.Show();
        }
开发者ID:modulexcite,项目名称:openwrap,代码行数:10,代码来源:App.xaml.cs

示例3: btn_generar_Click

        private void btn_generar_Click(object sender, EventArgs e)
        {
            Viaje viaje = new Viaje();
            viaje.Salida = salida;
            viaje.Llegada = DateTime.MinValue;
            viaje.Llegada_estimada = estimada;
            Aeronave seleccionado = new AeronaveDAO().FindById(Convert.ToInt32(dgv_aeronaves.CurrentRow.Cells[0].Value.ToString()));
            viaje.Aeronave = seleccionado;
            viaje.Ruta = ruta;
            viaje.Ruta_correcta = true;
            viaje.Cancelado = false;

            new ViajeDAO().Guardar(viaje);

            Main form = new Main();
            this.Close();
            form.Show();
        }
开发者ID:santibermejo,项目名称:GDD_santi_el_lider,代码行数:18,代码来源:Generar+Aeronave.cs

示例4: btn_canjear_Click

        private void btn_canjear_Click(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(txt_nro_doc.Text))
               error=error+"El campo DNI no puede estar incompleto.\n";
            else
                if (!Information.IsNumeric(txt_nro_doc.Text.Trim()))
                 error=error+"Debe Ingresar un valor numerico.\n";

            if(cb_productos.SelectedItem == null){
                error = error + "Debe seleccionar el producto a canjear.\n";
            }

            if (error != "")
            {
                MessageBox.Show(error);
                error = "";
                return;
            }

            Producto producto = (Producto)cb_productos.SelectedItem;
            if (producto.Cantidad < Convert.ToInt32(num_cantidad.Value))
            {
               MessageBox.Show("No hay suficiente stock.\n" + "El stock disponible para " + producto.Nombre + " es de " + producto.Cantidad);
               return;
            }

            int millas = new MillaDAO().Calcular_Millas(Convert.ToInt32(txt_nro_doc.Text));
            int millas_necesarias = producto.Cantidad_millas;
            if (millas < millas_necesarias)
            {
                MessageBox.Show("No tiene suficientes millas");
                return;
            }

            Cliente cliente = new ClienteDAO().Cliente_FindByDni(Convert.ToInt32(txt_nro_doc.Text));

            new ProductoDAO().RestarCantidad(Convert.ToInt32(num_cantidad.Value), cb_productos.Text,cliente.Id);
            MessageBox.Show("Canje realizado con exito");

            Main form = new Main();
            this.Hide();
            form.Show();
        }
开发者ID:santibermejo,项目名称:GDD_santi_el_lider,代码行数:43,代码来源:Canjear+Millas.cs

示例5: button1_Click

 private void button1_Click(object sender, EventArgs e)
 {
     try
     {
         var check = new CheckInput();
         if (!check.Check(ConfigurationManager.AppSettings["AdminPath"], Login.Text, Password.Text))
         {
             MessageBox.Show(@"Некорректные данные для входа");
             return;
         }
         var main = new Main();
         main.Show();
         Hide();
     }
     catch (Exception exception)
     {
         MessageBox.Show(exception.Message);
     }
 }
开发者ID:AlexeyKorkoza,项目名称:Course-Work,代码行数:19,代码来源:InputOfAdmin.cs

示例6: button1_Click

        private void button1_Click(object sender, EventArgs e)
        {
            DataBase.GetInstance().Transaccion_Comenzar();

            ClienteDAO cl_dao = new ClienteDAO();
            Cliente responsable = cl_dao.Cliente_FindByDni(Convert.ToInt32(txtDni.Text));
            if (responsable == null)
                responsable = new Cliente();

            responsable.Dni = Convert.ToInt32(txtDni.Text);
            responsable.Nombre = txtNombre.Text;
            responsable.Apellido = txtApellido.Text;
            responsable.Direccion = txtDireccion.Text;
            responsable.Mail = txtMail.Text;
            responsable.Telefono = Convert.ToInt32(txtTelefono.Text);
            responsable.FechaNac = new DateTime(cmbAnio.SelectedIndex + 1900, cmbMes.SelectedIndex + 1, (int)cmbDia.SelectedValue);

            cl_dao.Guardar_cliente(responsable);

            string base64Guid = Guid.NewGuid().ToString().Replace("-", "").Substring(0, 8).ToUpper();
            detalle.PNR = base64Guid;
            detalle.FechaCompra = DateTime.Now;
            detalle.Responsable_Pago = responsable;
            if (rdbTarjeta.Checked)
            {
                if (txtTC_Venc.Text.Length != 4)
                {
                    MessageBox.Show("El vencimiento de la tarjeta es invalido");
                    return;
                }

                detalle.TC_Numero = Convert.ToInt32(txtTC_Numero.Text);
                detalle.TC_Tipo = cmbTC_Tipo.SelectedValue.ToString();
                detalle.Cuotas = Convert.ToInt32(cmbTC_Cuotas.SelectedValue);
                detalle.TC_Vencimiento = txtTC_Venc.Text;
                detalle.MedioPago = "TC";
            }
            else
            {
                detalle.MedioPago = "Efectivo";
            }

            new DetalleCompraDAO().Guardar_detalleCompra(detalle);
            PasajeDAO pasaje_dao = new PasajeDAO();
            foreach (Pasaje p in pasajes)
            {
                pasaje_dao.Guardar_pasaje(p);
            }
            if (paquete != null)
                new PaqueteDAO().Guardar_paquete(paquete);

            DataBase.GetInstance().Transaccion_Commit();
            MessageBox.Show("Gracias por su compra. Su PNR es: " + base64Guid);
            Main form = new Main();
            form.Show();
            this.Hide();
        }
开发者ID:santibermejo,项目名称:GDD_santi_el_lider,代码行数:57,代码来源:Pago.cs

示例7: btn_volver_Click

 private void btn_volver_Click(object sender, EventArgs e)
 {
     Main form = new Main();
     this.Close();
     form.Show();
 }
开发者ID:santibermejo,项目名称:GDD_santi_el_lider,代码行数:6,代码来源:Listado_Estadistico.cs

示例8: bt_cancelar_Click

 private void bt_cancelar_Click(object sender, EventArgs e)
 {
     Main main = new Main();
     main.Show();
     this.Hide();
 }
开发者ID:Gone4Coding,项目名称:ProjetoCurso2016,代码行数:6,代码来源:ProcurarAtleta.cs

示例9: btnCancel_Click

 private void btnCancel_Click(object sender, EventArgs e)
 {
     this.Visible = false;
     Main m = new Main();
     m.Show();
 }
开发者ID:yqMac,项目名称:School,代码行数:6,代码来源:AutoUpdateForm.cs

示例10: SplashScreen_Load

 private void SplashScreen_Load(object sender, EventArgs e)
 {
     Main m = new Main();
       m.Show();
       this.Close();
 }
开发者ID:romanbdev,项目名称:quickroute-gps,代码行数:6,代码来源:SplashScreen.cs

示例11: button3_Click

 private void button3_Click(object sender, EventArgs e)
 {
     Main form = new Main();
     form.Show();
     this.Hide();
 }
开发者ID:santibermejo,项目名称:GDD_santi_el_lider,代码行数:6,代码来源:Devolucion.cs

示例12: Main

 private void 截图工具ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     //string FileName = "D:\\SnippingTool.exe";
     //System.Diagnostics.Process.Start(FileName);
     Main SnippingForm = new Main();//新建SnippingTool项目的main窗体来截图
     SnippingForm.Show();
 }
开发者ID:QilongTang,项目名称:OS_Teaching_Platform,代码行数:7,代码来源:F_Parent.cs

示例13: btn_volverRol_menu_Click

 private void btn_volverRol_menu_Click(object sender, EventArgs e)
 {
     Main form = new Main();
     this.Hide();
     form.Show();
 }
开发者ID:santibermejo,项目名称:GDD_santi_el_lider,代码行数:6,代码来源:abm_rol.cs

示例14: Window_Closing

 private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     //System.Windows.Application.Current.Shutdown();
     Main _main = new Main();
     _main.Focus();
     _main.Show();
 }
开发者ID:svegapons,项目名称:clustering_ensemble_suite,代码行数:7,代码来源:Intro.xaml.cs

示例15: StartExport

    private void StartExport(IEnumerable<ItemReference> selectedRefs)
    {
      if (Conn == null)
        return;

      var main = new Main();
      var wizard = (IWizard)main;
      wizard.ConnectionInfo = new[] { ConnData };
      wizard.Connection = Conn;

      var prog = new InnovatorAdmin.Controls.ProgressStep<ExportProcessor>(wizard.ExportProcessor);
      prog.MethodInvoke = e =>
      {
        wizard.InstallScript = new InstallScript();
        wizard.InstallScript.ExportUri = new Uri(wizard.ConnectionInfo.First().Url);
        wizard.InstallScript.ExportDb = wizard.ConnectionInfo.First().Database;
        wizard.InstallScript.Lines = Enumerable.Empty<InstallItem>();
        e.Export(wizard.InstallScript, selectedRefs, true);
      };
      prog.GoNextAction = () => wizard.GoToStep(new Controls.ExportResolve());
      main.Show();
      wizard.GoToStep(prog);
    }
开发者ID:rneuber1,项目名称:InnovatorAdmin,代码行数:23,代码来源:ScriptMenuGenerator.cs


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