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.
我正在尝试在 Windows 商店应用程序中显示一些行。为此,我使用以下 XAML 代码:
<Line Stroke="White" Width="5" X1="100" Y1="100" X2="200" Y2="500" Grid.Row="1"/>
页面的其余部分就像“基本页面”模板,我只在它上面的行中添加了一个按钮(或者,更好的是,我在设计器视图中的表单上拖动了一个按钮控件并将我的行代码粘贴到之后的线条。问题不在于线条没有出现,而在于它在开始动画后立即消失。
如果你想让你的线宽 5 像素,你不应该使用这个Width属性,因为这会使你的整个控件宽 5 像素(所以什么都不会被看到)。
Width
您必须改用该StrokeThickness属性。
StrokeThickness