Quantcast
Channel: Windows Presentation Foundation (WPF) forum
Viewing all articles
Browse latest Browse all 18858

Depedency Properties

$
0
0

Hello,

Hi have this DepedencyProperty:

public Test Value
{
    get { return (Test)GetValue(TestProperty); }
    set { SetValue(TestProperty, value); }
}

public static readonly DependencyProperty TestProperty =
    DependencyProperty.Register("Value", typeof(Test),
        typeof(UC), new FrameworkPropertyMetadata(new PropertyChangedCallback(ChangeFlag)));

private static void ChangeFlag(DependencyObject source, DependencyPropertyChangedEventArgs e)
{
    string countryName = ((Test)e.NewValue).ToString();
    ((UC)source).btnTest.Content = countryName;
}

And on xaml:

<Button x:Name="btnTest" Content="{Binding Value}" Foreground="White"/>

And when I use my UserControl on my Form:

Xaml:

<local:UC x:Name="btnText" FontSize="36" Value="Valor1"/>

My enum:

public enum Test
{
    Valor1,
    Valor2,
    Valor3,
    Teste1,
    Teste2,
    MinhaCMB,
    Teste3
}

When I try this on code behind of my form:

btnText.Valor = Test.Valor3;

Nothing happens.

---------------------

Another question: How can I change "Valor" (my depedencyProperty) on code-behind of my UC.

Regards, ADAE.



Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>