我必须创建一些标签,如果我可以进行分组并使用线路传输背景,高度等设置,我将提供更多View和更短的XAML代码。
这有选择吗?
有些想法:
<StackPanel>
<Group Height="25" Background="Red" VerticalAlignment="Top" VerticalContentAlignment="Center" HorizontalContentAlignment="Right">
<Label Name="Header" Content="Test" FontWeight="Bold" />
<Label Name="TextLabel" Content="Some Text" />
</Group>
</StackPanel>
答案 0 :(得分:1)
这是应该使用的样式:
app.get('/sms', function(req,res){
Location.href = 'C:\Services\WitsApp.Mobi\sms.php'
//console.warn(req);
console.warn(res);
res.end("Successfully purcahsed gold for Moon!");
});
首先,将样式定义为命名静态资源(名称为 LabelStyle )。该样式定义了要应用于所有标签的所有常用属性值。
然后,您可以通过Style
property将该样式分配给标签。