Hi Sandeep,
For your first question:
For classic situation, you can add the click event in XAML file, like
And define a method named "Button_Click" in C# code. But sometimes we can't use this way. For example, the control generated from the style, like in custom control. But don't worry, we can use another way. We can use Template.FindName method.
Here is an example:
XAML file:
C# code:
The class of MyCustomControl:
You can refer to http://msdn.microsoft.com/en-us/library/system.windows.frameworktemplate.findname.aspx to get more detail information.
For your second question:
You can add DP for Color. WPF has some default ValueConverters. So you can direct binding your Color Dependence property to a Text property, like
But if you have some more logic or some more complex data type or something else, you may need a ValueConverter. For ValueConvert, you can click following link to get more details.
http://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter.aspx
Hope this can help you.
Thanks
For your first question:
For classic situation, you can add the click event in XAML file, like
<Button Click="Button_Click" /> |
Here is an example:
XAML file:
<Style x:Key="MyControlStyle" TargetType="MyCustomControl"> |
...... |
<Button x:Key="MyButton" /> |
...... |
</Style> |
<Window> |
...... |
<YourCustomControl x:Name="MyControl" Style="{StaticResource MyControlStyle}" /> |
...... |
</Window> |
C# code:
The class of MyCustomControl:
public class MyCustomControl:CustomControl |
{ |
...... |
public MyCustomControl() |
{ |
Button myButton = (Button)this.Template.FindName("MyButton", this); |
myButton.Click += new RoutedEventHandler(Button_Click); |
} |
public void Button_Click(object sender, RoutedEventArgs e) |
{ |
...... |
} |
...... |
} |
You can refer to http://msdn.microsoft.com/en-us/library/system.windows.frameworktemplate.findname.aspx to get more detail information.
For your second question:
You can add DP for Color. WPF has some default ValueConverters. So you can direct binding your Color Dependence property to a Text property, like
<TextBox Text={Binding Path=YourColorDP} /> |
http://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter.aspx
Hope this can help you.
Thanks