Quantcast
Channel: Custom Controls In WPF
Viewing all articles
Browse latest Browse all 5

Custom Controls In WPF

$
0
0
It's possible.

First, you should define two Dependence properties in the C# code.
public DependenceProperty EllipseHeightProperty = DependenceProperty.resigter("EllipseHeight",typeof(double),typeof(CustomControl1)); // Here CustomControl1 means the class of your custom control.  
 
public DependenceProperty EllipseWidthProperty = DependenceProperty.resigter("EllipseWidth",typeof(double),typeof(CustomControl1));  
 
public double EllipseHeight  
{  
get  
{  
    return (double)GetValue(EllipseHeightProperty);  
}  
set  
{  
    SetValue(EllipseHeightProperty,value);  
}  
}  
 
public double EllipseWidth  
{  
get  
{  
    return (double)GetValue(EllipseWidthProperty);  
}  
set  
{  
    SetValue(EllipseWidthProperty,value);  
}  
And in the Constructor of your custom control, you should set the DataContext like this:
this.DataContext = this;

Second, you can use these two properties as data binding in XAML files
<Ellipse Height={Binding Path=EllipseHeightWidth={Binding Path=EllipseWidth/> 

Hope, this can help you.

Viewing all articles
Browse latest Browse all 5

Trending Articles



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