web-dev-qa-db-ja.com

WPF:ダイアログ/プロンプトを作成します

ユーザー入力用のTextBoxを含むダイアログ/プロンプトを作成する必要があります。私の問題は、ダイアログを確認した後にテキストを取得する方法ですか?通常、このためのクラスを作成して、プロパティにテキストを保存します。ただし、XAMLを使用してダイアログを設計します。したがって、TextBoxのコンテンツをプロパティに保存するには、XAMLコードを何らかの方法で拡張する必要がありますが、純粋なXAMLでは不可能だと思います。私がやりたいことを実現する最良の方法は何でしょうか? XAMLから定義できるが、それでも何らかの方法で入力を返すことができるダイアログを作成する方法は?ヒントをありがとう!

71
stefan.at.wpf

「責任ある」答えは、ダイアログのViewModelを作成し、TextBoxで双方向のデータバインディングを使用して、ViewModelに「ResponseText」プロパティがあるかどうかを提案することです。これは簡単ですが、おそらくやりすぎです。

実際的な答えは、テキストボックスにx:Nameを与えて、それがメンバーになり、テキストをクラスビハインドクラスのプロパティとして公開することです。

<!-- Incredibly simplified XAML -->
<Window x:Class="MyDialog">
   <StackPanel>
       <TextBlock Text="Enter some text" />
       <TextBox x:Name="ResponseTextBox" />
       <Button Content="OK" Click="OKButton_Click" />
   </StackPanel>
</Window>

次に、コードビハインドで...

partial class MyDialog : Window {

    public MyDialog() {
        InitializeComponent();
    }

    public string ResponseText {
        get { return ResponseTextBox.Text; }
        set { ResponseTextBox.Text = value; }
    }

    private void OKButton_Click(object sender, System.Windows.RoutedEventArgs e)
    {
        DialogResult = true;
    }
}

それを使用するには...

var dialog = new MyDialog();
if (dialog.ShowDialog() == true) {
    MessageBox.Show("You said: " + dialog.ResponseText);
}
124
Josh

静的メソッドを追加して、MessageBoxのように呼び出すだけです。

<Window xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
    x:Class="utils.PromptDialog"
    xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
    WindowStartupLocation="CenterScreen" 
    SizeToContent="WidthAndHeight"
    MinWidth="300"
    MinHeight="100"
    WindowStyle="SingleBorderWindow"
    ResizeMode="CanMinimize">
<StackPanel Margin="5">
    <TextBlock Name="txtQuestion" Margin="5"/>
    <TextBox Name="txtResponse" Margin="5"/>
    <PasswordBox Name="txtPasswordResponse" />
    <StackPanel Orientation="Horizontal" Margin="5" HorizontalAlignment="Right">
        <Button Content="_Ok" IsDefault="True" Margin="5" Name="btnOk" Click="btnOk_Click" />
        <Button Content="_Cancel" IsCancel="True" Margin="5" Name="btnCancel" Click="btnCancel_Click" />
    </StackPanel>
</StackPanel>
</Window>

そして、背後にあるコード:

public partial class PromptDialog : Window
{
    public enum InputType
    {
        Text,
        Password
    }

    private InputType _inputType = InputType.Text;

    public PromptDialog(string question, string title, string defaultValue = "", InputType inputType = InputType.Text)
    {
        InitializeComponent();
        this.Loaded += new RoutedEventHandler(PromptDialog_Loaded);
        txtQuestion.Text = question;
        Title = title;
        txtResponse.Text = defaultValue;
        _inputType = inputType;
        if (_inputType == InputType.Password)
            txtResponse.Visibility = Visibility.Collapsed;
        else
            txtPasswordResponse.Visibility = Visibility.Collapsed;
    }

    void PromptDialog_Loaded(object sender, RoutedEventArgs e)
    {
        if (_inputType == InputType.Password)
            txtPasswordResponse.Focus();
        else
            txtResponse.Focus();
    }

    public static string Prompt(string question, string title, string defaultValue = "", InputType inputType = InputType.Text)
    {
        PromptDialog inst = new PromptDialog(question, title, defaultValue, inputType);
        inst.ShowDialog();
        if (inst.DialogResult == true)
            return inst.ResponseText;
        return null;
    }

    public string ResponseText
    {
        get
        {
            if (_inputType == InputType.Password)
                return txtPasswordResponse.Password;
            else
                return txtResponse.Text;
        }
    }

    private void btnOk_Click(object sender, RoutedEventArgs e)
    {
        DialogResult = true;
        Close();
    }

    private void btnCancel_Click(object sender, RoutedEventArgs e)
    {
        Close();
    }
}

したがって、次のように呼び出すことができます。

string repeatPassword = PromptDialog.Prompt("Repeat password", "Password confirm", inputType: PromptDialog.InputType.Password);
30
Pythonizo

Joshの素晴らしい回答、彼の功績はすべて、私はこれをわずかに修正しました。

MyDialog Xaml

    <StackPanel Margin="5,5,5,5">
        <TextBlock Name="TitleTextBox" Margin="0,0,0,10" />
        <TextBox Name="InputTextBox" Padding="3,3,3,3" />
        <Grid Margin="0,10,0,0">
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*"/>
                <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
            <Button Name="BtnOk" Content="OK" Grid.Column="0" Margin="0,0,5,0" Padding="8" Click="BtnOk_Click" />
            <Button Name="BtnCancel" Content="Cancel" Grid.Column="1" Margin="5,0,0,0" Padding="8" Click="BtnCancel_Click" />
        </Grid>
    </StackPanel>

MyDialogコードビハインド

    public MyDialog()
    {
        InitializeComponent();
    }

    public MyDialog(string title,string input)
    {
        InitializeComponent();
        TitleText = title;
        InputText = input;
    }

    public string TitleText
    {
        get { return TitleTextBox.Text; }
        set { TitleTextBox.Text = value; }
    }

    public string InputText
    {
        get { return InputTextBox.Text; }
        set { InputTextBox.Text = value; }
    }

    public bool Canceled { get; set; }

    private void BtnCancel_Click(object sender, System.Windows.RoutedEventArgs e)
    {
        Canceled = true;
        Close();
    }

    private void BtnOk_Click(object sender, System.Windows.RoutedEventArgs e)
    {
        Canceled = false;
        Close();
    }

それをどこか別の場所に呼び出します

var dialog = new MyDialog("test", "hello");
dialog.Show();
dialog.Closing += (sender,e) =>
{
    var d = sender as MyDialog;
    if(!d.Canceled)
        MessageBox.Show(d.InputText);
}
15
xtds

これらの他の派手な答えは[〜#〜] any [〜#〜]は必要ありません。以下は、XAMLで設定されたすべてのMarginHeightWidthプロパティを持たない単純な例ですが、これを行う方法を示すのに十分なはずです。基本レベル。

[〜#〜] xaml [〜#〜]
通常どおりWindowページを作成し、フィールドを追加します。たとえば、Label内にTextBoxおよびStackPanelコントロールを追加します。

_<StackPanel Orientation="Horizontal">
    <Label Name="lblUser" Content="User Name:" />
    <TextBox Name="txtUser" />
</StackPanel>
_

次に、送信用の標準Button(「OK」または「送信」)と必要に応じて「キャンセル」ボタンを作成します。

_<StackPanel Orientation="Horizontal">
    <Button Name="btnSubmit" Click="btnSubmit_Click" Content="Submit" />
    <Button Name="btnCancel" Click="btnCancel_Click" Content="Cancel" />
</StackPanel>
_

Code-Behind
コードビハインドにClickイベントハンドラー関数を追加しますが、そこに行くときは、まず、テキストボックスの値を格納するパブリック変数を宣言します。

_public static string strUserName = String.Empty;
_

次に、イベントハンドラー関数(XAMLボタンのClick関数を右クリックし、[定義に移動]を選択して作成します)で、ボックスが空かどうかを確認する必要があります。そうでない場合は変数に保存し、ウィンドウを閉じます。

_private void btnSubmit_Click(object sender, RoutedEventArgs e)
{        
    if (!String.IsNullOrEmpty(txtUser.Text))
    {
        strUserName = txtUser.Text;
        this.Close();
    }
    else
        MessageBox.Show("Must provide a user name in the textbox.");
}
_

別のページから呼び出す
あなたが考えているのは、this.Close()でウィンドウを閉じると、私の値がなくなってしまうということですよね? NO !!別のサイトからこれを見つけました: http://www.dreamincode.net/forums/topic/359208-wpf -how-to-make-simple-popup-window-for-input /

Windowを別のユーザーから開き、値を取得する方法の例(これを少し整理しました)と似ています。

_public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    private void btnOpenPopup_Click(object sender, RoutedEventArgs e)
    {
        MyPopupWindow popup = new MyPopupWindow();  // this is the class of your other page

        //ShowDialog means you can't focus the parent window, only the popup
        popup.ShowDialog(); //execution will block here in this method until the popup closes

        string result = popup.strUserName;
        UserNameTextBlock.Text = result;  // should show what was input on the other page
    }
}
_

キャンセルボタン
あなたは考えていますが、その[キャンセル]ボタンについてはどうでしょうか。そのため、ポップアップウィンドウのコードビハインドに別のパブリック変数を追加し直します。

_public static bool cancelled = false;
_

_btnCancel_Click_イベントハンドラーを含めて、_btnSubmit_Click_に1つの変更を加えます。

_private void btnCancel_Click(object sender, RoutedEventArgs e)
{        
    cancelled = true;
    strUserName = String.Empty;
    this.Close();
}

private void btnSubmit_Click(object sender, RoutedEventArgs e)
{        
    if (!String.IsNullOrEmpty(txtUser.Text))
    {
        strUserName = txtUser.Text;
        cancelled = false;  // <-- I add this in here, just in case
        this.Close();
    }
    else
        MessageBox.Show("Must provide a user name in the textbox.");
}
_

そして、MainWindow _btnOpenPopup_Click_イベントでその変数を読み取ります。

_private void btnOpenPopup_Click(object sender, RoutedEventArgs e)
{
    MyPopupWindow popup = new MyPopupWindow();  // this is the class of your other page
    //ShowDialog means you can't focus the parent window, only the popup
    popup.ShowDialog(); //execution will block here in this method until the popup closes

    // **Here we find out if we cancelled or not**
    if (popup.cancelled == true)
        return;
    else
    {
        string result = popup.strUserName;
        UserNameTextBlock.Text = result;  // should show what was input on the other page
    }
}
_

長い応答ですが、これが_public static_変数を使用してどれだけ簡単かを示したかったのです。 DialogResultなし、戻り値なし、なし。ウィンドウを開いて、ポップアップウィンドウにボタンイベントとともに値を保存し、その後メインウィンドウ関数でそれらを取得します。

2
vapcguy