无法将所有文本粘贴到 wpf 文本框中

发布于 2024-12-10 19:47:12 字数 458 浏览 1 评论 0原文

我有一个简单的窗口和文本框,当我尝试将此代码粘贴到文本框中时,

[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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

风追烟花雨 2024-12-17 19:47:12

您需要允许您的文本框接受换行符:

AcceptsReturn="True"

You need to allow your TextBox to accept newlines:

AcceptsReturn="True"
还在原地等你 2024-12-17 19:47:12

文本框是否设置为接受新行?将这些属性设置为文本框:

TextWrapping="Wrap" //Wrap text within the text box
VerticalScrollBarVisibility="Visible" //If you want scroll bars
AcceptsReturn="True" //This does the magic.

Is the textbox set to accept new lines? Set these properties to the textbox:

TextWrapping="Wrap" //Wrap text within the text box
VerticalScrollBarVisibility="Visible" //If you want scroll bars
AcceptsReturn="True" //This does the magic.
耳根太软 2024-12-17 19:47:12

确保允许多行:

TextWrapping="Wrap"
VerticalScrollBarVisibility=“可见”
接受返回=“真”

Make sure to allow multi-line by:

TextWrapping="Wrap"
VerticalScrollBarVisibility="Visible"
AcceptsReturn="True"

魄砕の薆 2024-12-17 19:47:12

我可能花了一两个小时在这上面。啊。我终于注意到粘贴停在一个段落(即换行符)处。这种洞察力使我能够通过谷歌找到一些有用的东西(这个答案)。需要关键字 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文