Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用了一个与浏览按钮冲突的文本框来浏览一些文件
因为我无法为此文本框启用换行。即使我单击文本框并按“结束”以转到它不起作用的确切文件名,我也无法看到全部内容。
我想使用箭头键或 home/end 导航整个文本,如上所示。谁能帮我吗?
可能是您的末端部分TextBox在按钮后面增长。尝试使用布局控件StackPanel来水平排列控件,如下所示:
TextBox
StackPanel
<StackPanel Orientation="Horizontal"> <TextBox/> <Button/> </StackPanel>
希望能帮助到你