0

データテーブルのデータをテキストボックスにバインドしようとしています。正常に動作しますが、データテーブルの最後の行のみが表示されます。データテーブルのすべての行を表示することは可能ですか?

XAML:

<Window x:Class="messenger.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
<Grid>
    <TextBox Height="203" HorizontalAlignment="Left" Name="conversationInput" VerticalAlignment="Top" Width="491" Margin="12,3,0,0" IsReadOnly="True">
        <TextBox.Text>
            <MultiBinding StringFormat="{0} : {1}">
                <Binding Path="date" />
                <Binding Path="message" />
            </MultiBinding>
        </TextBox.Text>
    </TextBox>
</Grid>

背後にあるコード:

    public DataTable loadConversation()
    {
        DataTable conversation = new DataTable();
        string loadMessages = "select message, date from Messages where userID=1";
        ad = new MySqlDataAdapter(loadMessages, connection);
        ad.Fill(conversation);
        return conversation;
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        conversationInput.DataContext = loadConversation().DefaultView;
    }

よろしくお願いします、Fluxxi

4

2 に答える 2

0

このようTextBoxに設計されています。ListBox代わりに(または同様の)コントロールを使用する必要があります。

于 2013-02-23T14:07:07.153 に答える
0

はい、そうですが、 DataGridListViewなどのリピーターコントロールを使用する必要があります。

于 2013-02-23T14:07:18.707 に答える