Tag Info

Hot answers tagged

2

I think you should consider avoiding Telerik's classes (which, in my opinion, complicate the things a bit in this case). What about a standard DataTemplateSelector implementation? It's very easy to implement by yourself! First you declare a "classic" implementation of the abstract class DataTemplateSelector: public abstract class DataTemplateSelector : ...


2

(Un)fortunately, styles don't apply like they do in CSS, so there's no ambiguity of what you will end up with at the end, where styles build up on each other. If you create a style for a type, it is applied across all types in the scope of your style. This means if you include it at the top in your app.xaml, everything is affected, but if you include it ...


2

You can make a style BasedOn the default style for that element so that it includes all setters from the implicit style as well. For example, <Style TargetType="{x:Type CellValuePresenter}"> <!-- Generic Style Setters --> </Style> <!-- This Style will include the setters from the implicit style above --> <Style ...


1

Yes, there is: On your custom control which inherits from Calendar, you can expose dependency properties of type ControlTemplate for each of the three styles public class MyCalender : Calendar { public static readonly DependencyProperty PreviousButtonTemplateProperty = DependencyProperty.Register("PreviousButtonTemplate", typeof ...


1

1. The only difference is that GetTemplateChild will return null when: no template exists, or the named object exists but is not a DependencyObject (I don't know if this is even possible). Otherwise, this code: this.GetTemplateChild(name) is literally equivalent to this code: this.Template.FindName(name, this) I don't know why it was marked "Do ...


1

Why are you just not using the Opacity of the Button and have Triggers on the Button's Style directly, Your ControlTemplate does not have anything but this Path anyways. <Style TargetType="{x:Type local:PathButton}"> <Setter Property="Opacity" Value=".5" /> <Setter Property="OverridesDefaultStyle" Value="True" /> ...


1

It's not enough to define a BorderBrush, you will have to use it. In your ControlTemplate change <Border Name="border" BorderThickness="1" Padding="4,2" BorderBrush="DarkGray" CornerRadius="3" Background="{TemplateBinding Background}"> to <Border Name="border" BorderThickness="{TemplateBinding BorderThickness}" ...


1

You need a TextBox instead of ContentPresenter inside your Template. You replaced default template for TextBox with one that no longer has area for text input. Try like this: <Style TargetType="{x:Type TextBox}" x:Key="ExpandingTextBox"> <Setter Property="OverridesDefaultStyle" Value="True"/> <Setter Property="Template"> ...



Only top voted, non community-wiki answers of a minimum length are eligible