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.
有谁知道如何设置 TextBox.Width 属性以填充代码中父容器的其余部分?在 Xaml 中,我只需将 Width 属性设置为 *,但我不知道如何在代码中执行此操作。
谢谢,罗伊
你在寻找
HorizontalAlignment="Stretch"
相关答案:
WPF - 在 StackPanel 中设置 HorizontalAlignment= 拉伸到文本框
HorizontalAlignment=Stretch、MaxWidth 和 Left 同时对齐?
尝试以下
textBox.Width = Double.NaN;
Double.NaN(不是数字)相当于任何大小。