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


C# MessageDialog.Show方法代码示例

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


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

示例1: OnBtnTerminarClicked

    protected void OnBtnTerminarClicked(object sender, EventArgs e)
    {
        int puntos = 0;
            if (this.radiobtnC.Active)
                puntos++;

        if(this.spinbtn1.Text=="6")
                puntos++;

        if (this.checkbtnA.Active)
                puntos++;

        if (this.checkbtnC.Active)
                puntos++;

        DateTime fecha = this.calIndependencia.GetDate();
        string fechaSeleccionada = fecha.ToShortDateString();
        if (fechaSeleccionada == "16/09/1810"){
                puntos++;
        }

        MessageDialog md = new MessageDialog (null,
               DialogFlags.Modal,
               MessageType.Info,
               ButtonsType.None, "Estos son los puntos obtenidos: \n" +
                                              "Puntos: " + puntos + "\n");
        md.Show();
    }
开发者ID:reymond16061992,项目名称:Practica7,代码行数:28,代码来源:MainWindow.cs

示例2: OnButton1Clicked

    protected void OnButton1Clicked(object sender, EventArgs e)
    {
        int puntos=0;
        if(this.radiobutton3.Active)
            puntos++;

        if(this.spinbutton1.Text=="4")
            puntos++;

        if(this.checkbutton1.Active)
            puntos++;

        if(this.checkbutton2.Active)
            puntos++;

        DateTime fecha=this.calendar1.GetDate();
        string fechaseleccionada=fecha.ToShortDateString();
        if(fechaseleccionada=="16/09/1810"){
            puntos++;

            MessageDialog md = new MessageDialog (null,DialogFlags.Modal,MessageType.Info,
            ButtonsType.None, "puntos" +
             puntos);
            md.Show();

        }
    }
开发者ID:Eelizabeth,项目名称:PRACTICA-7,代码行数:27,代码来源:MainWindow.cs

示例3: OnAceptaClicked

    protected void OnAceptaClicked(object sender, System.EventArgs e)
    {
        if (password.Text=="123456"&& usuario.Text=="ricardo")
        {
            MessageDialog hola = new MessageDialog(
                null,
                DialogFlags.Modal,
                MessageType.Info,
                ButtonsType.None,
                "Hola Bienvenido"
            );
            hola.Show();
        }

        else
        {
            MessageDialog error = new MessageDialog(

                null,
                DialogFlags.Modal,
                MessageType.Info,
                ButtonsType.None,
                "Error verifique password y/o Usuario"
            );
            error.Show();
        }
    }
开发者ID:RickTC,项目名称:PracticaVentanaUsuario,代码行数:27,代码来源:MainWindow.cs

示例4: OnButton1Clicked

    protected void OnButton1Clicked(object sender, EventArgs e)
    {
        int puntos =0;

        if(this.opca.Active)
            puntos++;

        if(this.spm.Text == "4")

        if(this.opa.Active)
            puntos++;
        if(this.opd.Active)
            puntos++;

        DateTime fecha = this.calendario.GetDate();
        string fechaseleccionada = fecha.ToShortDateString();
        if(fechaseleccionada == "16/09/1810"){
            puntos++;
        }
        string a,b;

        a= nombre.Text;
        b= codigo.Text;

        MessageDialog md = new MessageDialog (null,
                                              DialogFlags.Modal,
                                              MessageType.Info,
                                              ButtonsType.None,"Nombre : "+ a +"\n"+ "Codigo: "+b + "\n" +
                                              "Grupo: " +
                                              "Ha obtenido: " + puntos + " aciertos");
        md.Show();
    }
开发者ID:nallely27,项目名称:practica_7,代码行数:32,代码来源:MainWindow.cs

示例5: OnCmbGrupoChanged

 protected virtual void OnCmbGrupoChanged(object sender, System.EventArgs e)
 {
     MessageDialog md = new MessageDialog (null,
                                           DialogFlags.Modal,
                                           MessageType.Info,
                                           ButtonsType.None, "Grupo: " + this.Grupo.ActiveText );
     md.Show();
 }
开发者ID:GerardoBarragan,项目名称:Practica7,代码行数:8,代码来源:MainWindow.cs

示例6: OnfileClicked

    //evento para programar el boton de manera dinamica
    protected virtual void OnfileClicked(object sender, System.EventArgs e)
    {
        Gtk.Button btnFile = (Gtk.Button) sender;
        string id = btnFile.Name.Replace("btnMostrar", "");

        MessageDialog md = new MessageDialog (null,
          	DialogFlags.Modal,
            MessageType.Info,
          	ButtonsType.None, id);//
            md.Show();
    }
开发者ID:GrijalvaMarco,项目名称:Practica8,代码行数:12,代码来源:MainWindow.cs

示例7: Button1ExecuteAction

 private void Button1ExecuteAction(object sender, TouchEventArgs e)
 {
     dialog = new MessageDialog(MessageDialogStyle.Ok, "タイトル", "メッセージ");
     /*
     【以下の様な書き方も可能】
     dialog = new MessageDialog();
     dialog.Style = MessageDialogStyle.Ok;
     dialog.Title = "タイトル";
     dialog.Message = "メッセージ";
     */
     dialog.ButtonPressed += new EventHandler<MessageDialogButtonEventArgs>(MessageBoxButtonDownHandler);
     dialog.Show();
 }
开发者ID:nakamura001,项目名称:PlayStationMobile-UISampleCode,代码行数:13,代码来源:MainScene.cs

示例8: OnTerminarClicked

 protected void OnTerminarClicked(object sender, System.EventArgs e)
 {
     preguntas();
     MessageDialog mensaje = new MessageDialog
     (
         null,
         DialogFlags.Modal,
         MessageType.Info,
         ButtonsType.None,"Codigo: "+ codigo.Text +"\n"+
                           "Nombre: "+ nombre.Text +"\n"+
                             "Puntos obtenidos: "+puntos
     );
     mensaje.Show();
 }
开发者ID:RickTC,项目名称:Practica6Cuestionario,代码行数:14,代码来源:MainWindow.cs

示例9: OnBtnTerminarClicked

 protected void OnBtnTerminarClicked(object sender, EventArgs e)
 {
     int puntos=0;
     if (this.rburespuesta1c.Active) puntos++;
     if (this.spbRespuesta2.Text=="4") puntos++;
     if (this.ckbRespuesta3a.Active) puntos++;
     if (this.ckbRespuesta3b.Active) puntos++;
     DateTime Fecha=this.calendario.GetDate();
     string fechaSeleccionada=Fecha.ToShortDateString();
     if (fechaSeleccionada=="16/09/2013"){
         puntos++;
     }
     MessageDialog md = new MessageDialog (null,DialogFlags.Modal,MessageType.Info,ButtonsType.None,"Tu Resultado es: "+puntos+" Puntos");
     md.Show();
 }
开发者ID:JonathanIvan,项目名称:Practica_7,代码行数:15,代码来源:MainWindow.cs

示例10: MainWindow

    public MainWindow()
        : base("Icon")
    {
        SetDefaultSize(250, 160);
        SetPosition(WindowPosition.Center);

        //DeleteEvent += new DeleteEventHandler(OnDeleteEvent);
        DeleteEvent += delegate
        {
                Application.Quit();
        };

        ModifyBg(StateType.Normal, new Gdk.Color(40, 40, 40));

        try
        {
            _image1 = new Gdk.Pixbuf("evolution.png");
        }
        catch (Exception ex)
        {
            //
            MessageDialog box = new MessageDialog(this, DialogFlags.Modal, MessageType.Warning, ButtonsType.Ok, ex.Data.ToString());
            box.Show();
        }

        Image img1 = new Image(_image1);

        Fixed fix = new Fixed();

        //        Button btn1 = new Button("Button1");
        //        btn1.Sensitive = false;
        //        Button btn2 = new Button("Button2");
        //        Button btn3 = new Button(Stock.Close);
        //        Button btn4 = new Button();
        //        btn4.SetSizeRequest(80, 40);

        fix.Put(img1, 0, 0);

        //        fix.Put(btn1, 20, 30);
        //        fix.Put(btn2, 100, 30);
        //        fix.Put(btn3, 20, 80);
        //        fix.Put(btn4, 100, 80);

        Add(fix);

        ShowAll();
    }
开发者ID:oraora81,项目名称:NOCmono,代码行数:47,代码来源:MainWindow.cs

示例11: OnBotonTerminarClicked

    protected void OnBotonTerminarClicked(object sender, System.EventArgs e)
    {
        //throw new System.NotImplementedException ();
        int puntos=0;

        //pregunta 1
        if(this.radiobutton1.Active)
            puntos++;
        if(this.radiobutton2.Active)
            puntos++;
        if(this.radiobutton3.Active)
            puntos++;
        if(this.radiobutton4.Active)
            puntos++;

        //pregunta 2
        if(this.spinbutton1.Text=="4")
            puntos++;

        //pregunta 3
        if(this.checkOpc1.Active){
            puntos++;
        }
        if(this.checkOpc4.Active){
            puntos++;
        }

        //pregunta 4

        DateTime fecha = this.calendar1.GetDate();
        string fechaSeleccionada = fecha.ToShortDateString();
        if(fechaSeleccionada=="16/09/1810"){
        puntos++;
        }

        //mensaje en pantalla

        MessageDialog mensaje = new MessageDialog (null,
          	DialogFlags.Modal,
          		MessageType.Info,
          	ButtonsType.None, "obtuviste :"+puntos+" aciertos!");
        mensaje.Show();
    }
开发者ID:GrijalvaMarco,项目名称:Practica7,代码行数:43,代码来源:MainWindow.cs

示例12: OnDeleteClicked

 protected virtual void OnDeleteClicked(object sender, System.EventArgs e)
 {
     Gtk.Button btnDelete = (Gtk.Button) sender;
     string id = btnDelete.Name.Replace("btnEliminar_", "");
     AccionesDeRegistros accion = new AccionesDeRegistros();
     if(accion.eliminarRegistroPorId(id)){
         MessageDialog md = new MessageDialog (null,
             DialogFlags.Modal,
             MessageType.Info,
             ButtonsType.None, "Accion realizada con exito.");
         md.Show();
         this.tabla();
     }else{
         MessageDialog md = new MessageDialog (null,
             DialogFlags.Modal,
             MessageType.Error,
             ButtonsType.None, "Ocurrio un error al tratar de eliminar. ");
         md.Show();
     }
 }
开发者ID:ricardointeractive,项目名称:ProyectoBD,代码行数:20,代码来源:MainWindow.cs

示例13: OnBtnEntrarClicked

 protected void OnBtnEntrarClicked(object sender, EventArgs e)
 {
     Proyecto.Autenticacion auth = new Proyecto.Autenticacion ();
     if (auth.valido (this.txtLogin.Text.Trim (), this.txtPassword.Text.Trim ())) {
         MessageDialog md = new MessageDialog (
             null,
           	DialogFlags.Modal,
       		MessageType.Info,
           	ButtonsType.None, "Bienvenido usuario " + this.txtLogin.Text.Trim ()
         );
         md.Show ();
     } else {
         MessageDialog md = new MessageDialog (
             null,
           	DialogFlags.Modal,
       		MessageType.Error,
           	ButtonsType.None, "Usted es un intruso "
         );
         md.Show ();
     }
 }
开发者ID:GrijalvaMarco,项目名称:Proyecto,代码行数:21,代码来源:MainWindow.cs

示例14: OnCambiaClicked

    protected void OnCambiaClicked(object sender, System.EventArgs e)
    {
        double dineropesos,cambiarpesos;

        if (!Double.TryParse(peso.Text, out dineropesos)|| !Double.TryParse(cambio.Text,out cambiarpesos) || dineropesos==0 || cambiarpesos==0)
        {
            MessageDialog md = new MessageDialog(

                null,
                DialogFlags.Modal,
                MessageType.Info,
                ButtonsType.None,
                    "El caracter ingresado no es correcto\n y/o cero en espacio"
                );
            md.Show();
        }
        else
        {
            double respuesta= dineropesos/cambiarpesos;
            dolar.Text = respuesta.ToString();
        }
    }
开发者ID:RickTC,项目名称:PracticaConversor,代码行数:22,代码来源:MainWindow.cs

示例15: OnExportarClicked

    protected void OnExportarClicked(object sender, EventArgs e)
    {
        try
        {
        AccionesDeRegistros accion = new AccionesDeRegistros();
        accion.exportar ();
        MessageDialog md = new MessageDialog (null,
                                   DialogFlags.Modal,
                                   MessageType.Info,
                                   ButtonsType.None, "Accion realizada con exito.");
            md.Show ();
        }
        catch(Exception Msg)
        {
            MessageDialog md = new MessageDialog (null,
                DialogFlags.Modal,
                MessageType.Error,
                ButtonsType.None, "Ouch "+ "El Archivo ya exite o ocurrio un error al exportar borre el archivo existente o intentelo de nuevo" );
            md.Show();

        }
    }
开发者ID:ricardointeractive,项目名称:ProyectoBD,代码行数:22,代码来源:MainWindow.cs


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