无法将所有文本粘贴到 wpf 文本框中
我有一个简单的窗口和文本框,当我尝试将此代码粘贴到文本框中时,
[Code]General : sample.avi
Format : AVI
Length : 380 MiB for 16mn 57s 320ms
Video #0 : DivX 5 at 2994 Kbps
Aspect : 1024 x 576 () at 25.000 fps
Audio #0 : MPEG-1 Audio layer 3 at 128 Kbps
Infos : 2 channels, 48.0 KHz [/code]
它会在
[Code]General : sample.avi
为什么之后停止?
I have a simple window and textbox, when i try to paste this code to the textbox
[Code]General : sample.avi
Format : AVI
Length : 380 MiB for 16mn 57s 320ms
Video #0 : DivX 5 at 2994 Kbps
Aspect : 1024 x 576 () at 25.000 fps
Audio #0 : MPEG-1 Audio layer 3 at 128 Kbps
Infos : 2 channels, 48.0 KHz [/code]
It stops after
[Code]General : sample.avi
Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您需要允许您的文本框接受换行符:
You need to allow your TextBox to accept newlines:
文本框是否设置为接受新行?将这些属性设置为文本框:
Is the textbox set to accept new lines? Set these properties to the textbox:
确保允许多行:
TextWrapping="Wrap"
VerticalScrollBarVisibility=“可见”
接受返回=“真”
Make sure to allow multi-line by:
TextWrapping="Wrap"
VerticalScrollBarVisibility="Visible"
AcceptsReturn="True"
我可能花了一两个小时在这上面。啊。我终于注意到粘贴停在一个段落(即换行符)处。这种洞察力使我能够通过谷歌找到一些有用的东西(这个答案)。需要关键字 C# Paste Truncated Incomplete Newline 或类似的东西。我几年前用过C#,没有这个问题。谢谢
I probably spent a good hour or two on this. Ugh. I finally noticed that the paste was stopping at a paragraph (i.e., newline). This insight allowed me to Google to something useful (this answer). Need keywords C# Paste Truncated Incomplete Newline or somesuch. I used C# years ago, and didn't have this issue. Thanks