本文整理汇总了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();
}
示例2: ShowMainWindow
void ShowMainWindow()
{
MainViewModel viewModel = new MainViewModel();
Main mainWindow = new Main();
mainWindow.DataContext = viewModel;
MainWindow = mainWindow;
mainWindow.Show();
}
示例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();
}
示例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();
}
示例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);
}
}
示例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();
}
示例7: btn_volver_Click
private void btn_volver_Click(object sender, EventArgs e)
{
Main form = new Main();
this.Close();
form.Show();
}
示例8: bt_cancelar_Click
private void bt_cancelar_Click(object sender, EventArgs e)
{
Main main = new Main();
main.Show();
this.Hide();
}
示例9: btnCancel_Click
private void btnCancel_Click(object sender, EventArgs e)
{
this.Visible = false;
Main m = new Main();
m.Show();
}
示例10: SplashScreen_Load
private void SplashScreen_Load(object sender, EventArgs e)
{
Main m = new Main();
m.Show();
this.Close();
}
示例11: button3_Click
private void button3_Click(object sender, EventArgs e)
{
Main form = new Main();
form.Show();
this.Hide();
}
示例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();
}
示例13: btn_volverRol_menu_Click
private void btn_volverRol_menu_Click(object sender, EventArgs e)
{
Main form = new Main();
this.Hide();
form.Show();
}
示例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();
}
示例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);
}