0

我正在尝试在使用 WPF 编写的 c# 表单中编辑源代码,并且在其中不直接声明属性,而是从下面的引用中使用,我从 WPF 表单中放置了一些行。

<Grid>
    <StackPanel>
        <Label>
            <LocText ResourceIdentifierKey="CustomerName" Suffix=":"/>
        </Label>
        <TextBox HorizontalAlignment="Left" MinWidth="200" Text="{Binding Name}" />
        <Label>
            <LocText ResourceIdentifierKey="GroupCode" Suffix=":"/>
        </Label>
        <ComboBox HorizontalAlignment="Left" MinWidth="150" Text="{Binding       GroupCode,Mode=TwoWay}"
                  ItemsSource="{Binding GroupCodes}" IsEditable="True"/>
        <Label>
            <LocText ResourceIdentifierKey="PhoneNumber" Suffix=":"/>
        </Label>
        <Common:MaskedTextBox HorizontalAlignment="Left" MinWidth="100" InputMask="{Binding PhoneNumberInputMask}"
             PromptChar=" " UnmaskedText="{Binding PhoneNumber, Mode=TwoWay, UpdateSourceTrigger=LostFocus, ValidatesOnDataErrors=True, ValidatesOnExceptions=True}" />
        <Label>
            <LocText ResourceIdentifierKey="Address" Suffix=":"/>
        </Label>
        <TextBox HorizontalAlignment="Left" MinWidth="200" MinHeight="55" Text="{Binding Address}"
             AcceptsReturn="True" />
        <Label>
            <LocText ResourceIdentifierKey="Note" Suffix=":"/>
        </Label>
        <TextBox HorizontalAlignment="Left" MinWidth="200" MinHeight="55" Text="{Binding Note}"
             AcceptsReturn="True" />
        <CheckBox Margin="0,5,0,0" IsChecked="{Binding InternalAccount}">
            <LocText ResourceIdentifierKey="InternalAccount"/>
        </CheckBox>
        <Button HorizontalAlignment="Left" Margin="0,10" MinWidth="70" Content="{Binding SaveCommand.Caption}"
             Command="{Binding SaveCommand}" />
        <Label Content="{Binding Error}" Foreground="Red" />
    </StackPanel>
</Grid>

如何编辑属性?

例如,我想更改 Lable 的内容。

4

1 回答 1

0

很难知道你在问什么——如果你想编辑源代码,只需在 Visual Studio 中加载文件并输入。

如果要在运行时更改 Label 的内容,有两种方法。

一种是使用 Binding 将标签连接到与表单/用户控件关联的 DataContext 对象上的属性。

另一种是给标签一个实际的名称:

<Label x:Name="showAccountError Foreground="Red"/>

然后您可以在代码中设置内容:

showAccountError.Content = "Sample error";
于 2012-08-15T21:08:05.013 回答