Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
141971 | Jan 14,2019 12:25 AM UTC | Jan 16,2019 07:08 AM UTC | WPF | 1 |
![]() |
Tags: SfKanban |
public partial class ResourceCard : UserControl
{
public ResourceCard()
{
InitializeComponent();
}
public object Value
{
get { return (object)GetValue(ValueProperty); }
set { SetValue(ValueProperty, value); }
}
// Using a DependencyProperty as the backing store for Value. This enables animation, styling, binding, etc...
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register("Value", typeof(object), typeof(ResourceCard), new PropertyMetadata(null, OnValueChanged));
private static void OnValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var value = e.NewValue;
}
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.