• <menu id="w2i4a"></menu>
  • logo DevExpress WinForm中文手冊

    XtraDialog


    立即下載DevExpress WinForms

    XtraDialog是一個替代標(biāo)準(zhǔn)對話框的消息框。與標(biāo)準(zhǔn)對話框一樣,它允許您在其客戶端區(qū)域顯示控件(例如,UserControl)和按鈕集,然而,與標(biāo)準(zhǔn)對話框不同的是,它支持DevExpress皮膚來應(yīng)用一致的外觀。例如,下圖顯示了一個與應(yīng)用程序主題不匹配的標(biāo)準(zhǔn)對話框。

    xtradialog

    第二幅圖顯示了使用XtraDialog的同一個應(yīng)用程序。

    xtradialog

    要顯示對話框,請調(diào)用靜態(tài)XtraDialog.Show方法。此方法的參數(shù)允許您指定在其客戶端區(qū)域顯示哪個控件,指定對話框的標(biāo)題,并添加預(yù)定義的按鈕:

    下面的代碼調(diào)用一個XtraDialog,顯示一個帶有自定義控件的UserControl(兩個TextEdit控件和一個CheckEdit控件),以及OK和Cancel按鈕:

    xtradialog示例

    C#:

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using DevExpress.XtraEditors;
    using DevExpress.XtraLayout;
    using DevExpress.XtraPrinting.Export;
    
    namespace WindowsFormsApp1 {
    public partial class Form3 : Form {
    public Form3() {
    InitializeComponent();
    }
    
    private void simpleButton1_Click(object sender, EventArgs e) {
    LoginUserControl myControl = new LoginUserControl();
    if(XtraDialog.Show(myControl, "Sign in", MessageBoxButtons.OKCancel) == DialogResult.OK) {
    /*
    * string login = myControl.Login;
    * string password = myControl.Password;
    */
    }
    }
    }
    
    public class LoginUserControl : XtraUserControl {
    TextEdit teLogin;
    TextEdit tePassword;
    public LoginUserControl() {
    LayoutControl lc = new LayoutControl();
    lc.Dock = DockStyle.Fill;
    this.teLogin = new TextEdit();
    this.tePassword = new TextEdit();
    tePassword.Properties.UseSystemPasswordChar = true;
    CheckEdit ceKeep = new CheckEdit() { Text = "Keep me signed in" };
    lc.AddItem(String.Empty, teLogin).TextVisible = false;
    lc.AddItem(String.Empty, tePassword).TextVisible = false;
    lc.AddItem(String.Empty, ceKeep);
    this.Controls.Add(lc);
    this.Height = 100;
    this.Dock = DockStyle.Top;
    }
    public string Login {
    get { return teLogin.Text; }
    }
    public string Password {
    get { return tePassword.Text; }
    }
    }
    }

    點(diǎn)擊復(fù)制

    VB.NET:

    Imports System
    Imports System.Collections.Generic
    Imports System.ComponentModel
    Imports System.Data
    Imports System.Drawing
    Imports System.Linq
    Imports System.Text
    Imports System.Windows.Forms
    Imports DevExpress.XtraEditors
    Imports DevExpress.XtraLayout
    Imports DevExpress.XtraPrinting.Export
    
    Namespace WindowsFormsApp1
    Partial Public Class Form3
    Inherits Form
    
    Public Sub New()
    InitializeComponent()
    End Sub
    
    Private Sub simpleButton1_Click(ByVal sender As Object, ByVal e As EventArgs)
    Dim myControl As New LoginUserControl()
    If XtraDialog.Show(myControl, "Sign in", MessageBoxButtons.OKCancel) = System.Windows.Forms.DialogResult.OK Then
    ' string login = myControl.Login;
    ' string password = myControl.Password;
    End If
    End Sub
    End Class
    
    Public Class LoginUserControl
    Inherits XtraUserControl
    
    Private teLogin As TextEdit
    Private tePassword As TextEdit
    Public Sub New()
    Dim lc As New LayoutControl()
    lc.Dock = DockStyle.Fill
    Me.teLogin = New TextEdit()
    Me.tePassword = New TextEdit()
    tePassword.Properties.UseSystemPasswordChar = True
    Dim ceKeep As New CheckEdit() With {.Text = "Keep me signed in"}
    lc.AddItem(String.Empty, teLogin).TextVisible = False
    lc.AddItem(String.Empty, tePassword).TextVisible = False
    lc.AddItem(String.Empty, ceKeep)
    Me.Controls.Add(lc)
    Me.Height = 100
    Me.Dock = DockStyle.Top
    End Sub
    Public ReadOnly Property Login() As String
    Get
    Return teLogin.Text
    End Get
    End Property
    Public ReadOnly Property Password() As String
    Get
    Return tePassword.Text
    End Get
    End Property
    End Class
    End Namespace

    點(diǎn)擊復(fù)制

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();