如何在C#中向XAML代码中的网格添加标签?

时间:2018-09-22 11:22:22

标签: c# xamarin xamarin.forms

我有这个模板:

<?xml version="1.0" encoding="UTF-8"?>
<ContentView xmlns="http://xamarin.com/schemas/2014/forms" 
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
             x:Class="Japanese.Templates.PointReductionModeTemplate" x:Name="this">
    <StackLayout BackgroundColor="#FFFFFF" Padding="20,0" HeightRequest="49" Margin="0">
        <Grid VerticalOptions="CenterAndExpand" x:Name="ABC">

        </Grid>
    </StackLayout>
</ContentView>

如何使用此文本和样式将此标签添加到C#中的网格中?请注意,我也希望能够引用Source={x:Reference this}

<Label Text="{Binding Text, Source={x:Reference this}}" Style="{StaticResource LabelText}" />

3 个答案:

答案 0 :(得分:5)

在使用父级(this)作为绑定源的同时,您可以使用SetBinding()创建绑定。明确指定source参数会告诉Binding将该实例称为Source

//<Label Text="{Binding Text, Source={x:Reference this}}" ...
var label = new Label();
label.SetBinding(Label.TextProperty, new Binding(nameof(Text), source: this));

现在从资源动态设置Style并不是那么简单。当我们在XAML中使用StaticResource扩展名时,它会沿着视觉树查找匹配的资源(样式)。在后台代码中,您将必须手动定义确切的资源字典,在其中定义样式。

因此,假设您在App.xaml中定义了“ LabelText”,则可以使用以下代码:

//... Style="{StaticResource LabelText}" />
//if the style has been defined in the App resources
var resourceKey = "LabelText";

// resource-dictionary that has the style
var resources = Application.Current.Resources;

if (resources.TryGetValue(resourceKey, out object resource))
    label.Style = resource as Style;

如果样式是在PointReductionModeTemplate.xaml(或ContentView资源)中定义的,则可以选择使用:

var resources = this.Resources;
if (resources.TryGetValue(resourceKey, out object resource))
    label.Style = resource as Style;

最后将标签添加到网格。

this.ABC.Children.Add(label);

答案 1 :(得分:3)

您应该创建一个标签类的对象,然后将该对象添加到网格的Chidlers属性中。

Label dynamicLabel = new Label();

dynamicLabel.Name = "NewLabel";
dynamicLabel.Content = "TEST";
dynamicLabel.Width = 240;
dynamicLabel.Height = 30;
dynamicLabel.Margin = new Thickness(0, 21, 0, 0);
dynamicLabel.Foreground = new SolidColorBrush(Colors.White);
dynamicLabel.Background = new SolidColorBrush(Colors.Black);

Grid.SetRow(dynamicLabel, 1);
Grid.SetColumn(dynamicLabel, 0);

gride.Children.Add(dynamicLabel);

答案 2 :(得分:1)

您可以尝试

Grid grid = new Grid();
grid.SetBinding(Grid.BindingContextProperty, "Source");

Label label = new Label();
label.SetBinding(Label.TextProperty,FieldName);
Resources.Add ("label", customButtonStyle);
grid.Children.Add(label)

要在Label中添加Grid,请指定您的首选位置。只需示例代码即可以编程方式在Label上设置绑定

label.BindingContext = list; // The observablecollection
label.SetBinding(Label.TextProperty, "Count");

Styles programaticallyBinding programatically

希望它对您有所帮助。