WPF DataGridTextColumn多行输入
我在 .NET 4 中使用具有 DataGridTextColumn 的 WPF DataGrid 控件。
我希望能够输入多行文本。 当我将数据绑定到列时,换行符的格式正确,但我没有找到在编辑文本时创建换行符的方法。
<DataGrid ItemsSource="{Binding MyMessages}">
<DataGrid.Columns>
<DataGridTextColumn Header="Message" Binding="{Binding Path=Message}" Width="Auto"/>
<DataGrid.Columns>
</DataGrid>
有什么建议吗?
I am using the WPF DataGrid control in .NET 4 that have a DataGridTextColumn.
I want to be able to enter multi-line text.
The line breaks are formatted correctly when I bind data to the column, but I've found no way of creating the line breaks when editing the text.
<DataGrid ItemsSource="{Binding MyMessages}">
<DataGrid.Columns>
<DataGridTextColumn Header="Message" Binding="{Binding Path=Message}" Width="Auto"/>
<DataGrid.Columns>
</DataGrid>
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try:
扩展的 WPF 工具包 MultiLineTextEditor 将提供您所需的内容。
扩展 WPF 工具包 MultiLineTextEditor
Extended WPF Toolkit MultiLineTextEditor will provide what you need.
Extended WPF Toolkit MultiLineTextEditor