0
votes
1answer
20 views

Custom control or not in this case?

I would factor a graphic control, but I do not know how to do it. I want to create a container control with templated elements. ex: <MyControl> <MyControl.Elements> ...
0
votes
0answers
39 views

raise event in custom iTemplate

I have a gridview that uses a custom template field, like this: Public Class CheckBoxTemplate Implements ITemplate Public Event checkChange As EventHandler Public Sub cb_OnChange(ByVal ...
0
votes
2answers
151 views

ControlTemplate to button with images - Silverlight for WP7

I have a ControlTemplate which targets a button control. The ControlTemplate has two images for the normal and pressed states, one for each. I want to use this ControlTemplate in 8 different buttons ...
0
votes
0answers
27 views

writing a custom control that adheres to the current theme

Sometimes I need to write a custom control that is actually nothing more than the compostion of other standard controls. I just want to encaplulate a certain control behavior. A typical example would ...
2
votes
1answer
62 views

Inheriting from a control vs Creating a new control template

I'm creating a WPF application (which is also MVVM based), what should I consider when deciding whether to inherit and create a Custom Control vs creating a new style template for that control. I ...
0
votes
0answers
27 views

Control selection weirdness in Silverlight VS designer with custom templates

I have a TabControl whose ControlTemplate I am redefining, and have got a problem whereas in the VS designer I can't select controls by clicking where they are, but have to click in a different ...
1
vote
1answer
295 views

WPF Custom Button size path to content

Here's my custom buttons template: <Button.Template> <ControlTemplate TargetType="{x:Type Button}"> <Grid> <Path x:Name="Inner" Stretch="Fill" ...
1
vote
1answer
117 views

Prevent Controls in ControlTemplate inheriting global Styles (WPF)

I have this generic style for a custom control with this Template. <Style TargetType="{x:Type local:MyType}"> <Setter Property="Template"> <Setter.Value> ...
0
votes
1answer
265 views

Giving a button in a textbox functionality, without using a custom control but overiding the textbox template

I implemented a button into the textbox overriding the template with the code below: <Style x:Key="{x:Type TextBox}" TargetType="{x:Type TextBoxBase}"> <Setter Property="Template"> ...
0
votes
1answer
455 views

Is template binding to a Geometry possible

I currently have a custom Button control which displays a DrawingImage set on the control via a dependency property of type ControlTemplate. I have been attempting to move the DrawingImage into the ...
2
votes
0answers
113 views

Error with templated control with attribute [TemplateInstance(TemplateInstance.Single)] inside FormView

I've created a Custom Control that has a single ContentTemplate where I've decorated the ITemplate property with the [TemplateInstance(TemplateInstance.Single)] attribute to make all controls inside ...
0
votes
1answer
334 views

Custom control defined in an assembly with ControlTemplates defined in another

I have created a library with custom controls to simplify some developments of my coworkers. I then have created a template in which I would like to give them the opportunity to modify default ...
0
votes
1answer
1k views

Silverlight: How to Create a VisualState for a Templated / Custom Control

I'm trying to create a templated/custom control in Silverlight. The base control can be a System.Windows.Controls.Button. The button has the following visual states: ...
1
vote
3answers
451 views

Codebehind for ControlTemplate of lookless control?

I'm writing a lookless control which uses the usual Generic.xaml to apply a default control template. This control template needs some codebehind in order to render itself (Mainly to respond to ...
3
votes
1answer
120 views

Foreground property behavior confusion

I have a custom control like this: public class CustomControl1 : Control { private StackPanel panel; static CustomControl1() { ...
1
vote
2answers
957 views

Changing the Content Template of a custom control when a property changes

I'm fairly new to WPF and I'm not sure how to do what I want to do. I've built a custom control that I call a Volume Control. It has 2 RepeatButtons in it, 1 for increasing the value of the Volume ...
0
votes
1answer
83 views

Force binding to occur after apply ControlTemplate?

Hey, I am building a CustomControl that has a bunch of dependency properties and a few visual parts like, for example, a Canvas, a TextBox, etc. Problem is, upon assigning a value to the dependency ...
2
votes
2answers
541 views

In WPF, should my custom button with behaviour be an extended Button, a CustomControl, or just a ControlTemplate?

I have a ControlTemplate for typeButton that imitates the Windows 7 taskbar button style. I can apply this to a standard Button and it looks just right. For those that have not seen Windows 7, the ...
6
votes
3answers
198 views

WPF/Silverlight : Templating Custom Control PARTIALLY

. Hello guys, Can we write our custom controls in such a way that later on we can re-template it partially? Means, without replacing the entire ControlTemplate, we want to change/override some of ...
0
votes
2answers
508 views

How can I change the default Control template of a TabControl according to my choice

I am trying to develop a Customize TabControl in which I'll divide the Whole TabControl into three Parts: 1)Tab Header 2)Common Region(for all Tab) and 3)Tab Content region for specific Tab Update: ...
4
votes
2answers
886 views

WPF Custom Control Template Not Applied

I'm sure this question or derivatives of it have been asked a bazillion times, but I couldn't find anything that helped me solve the problem, so I'm asking. Please feel free to direct me to the ...
2
votes
1answer
315 views

VS2010 cannot find type ControlTemplate even though System.Windows is referenced

I'm trying to learn Silverlight here, creating a custom control template, however VS2010 refuses to recognize the ControlTemplate type in markup code, even though I have referenced the System.Windows ...
1
vote
1answer
164 views

How do I bind a command to e.g. the right mouse button in a ControlTemplate in WPF?

I have a custom Control derived class and a view model to go with. The user can do several actions with this control, and I'm thinking it's best to implement these as RoutedCommand objects or ICommand ...
0
votes
1answer
523 views

Multiple Control Templates for a custom control in Silverlight

I am creating a custom control. The contents of the control will differ a lot when in different visual states. Can I to achieve the above, apply different control templates to the same custom ...
3
votes
1answer
2k views

Silverlight custom control inheritance. Reusing the template?

i have the following scenario: [TemplatePart(Name = GoToEditModeButtonPart, Type = typeof(DoubleClickButton))] public class ValueBoxWithLabel : ContentControl { public const string ...
1
vote
1answer
1k views

ListBox instead of ItemsPresenter in WPF Custom Control?

I'm writing a generic control template for my WPF Custom Control. But with ItemsPresenter I only got raw list of Data.. Compared to the ListBox, the ListBox has all features I need. Is it wrong to ...