我可以指定控件的左属性,但是任何人都可以帮助我在WPF中实现这一点吗?
Label1.Left = 10
我想要实现的目标:
https://dl.dropboxusercontent.com/u/61853045/textgap.PNG https://dl.dropboxusercontent.com/u/61853045/textscrolling.PNG
答案 0 :(得分:0)
试试这个
label.Margin = new Thickness(10,
label.Margin.Top, label.Margin.Right, label.Margin.Bottom);
答案 1 :(得分:0)
你需要这样做:
Label1.Margin= new windows.Thickness(10,0,0,0)
margin(0)= Left,margin(1)= Top,margin(2)= Right,margin(3)= Bottom