Tagged Questions
1
vote
1answer
77 views
Template property of type ControlTemplate accepts both 'DataTemplate & ControlTemplate' in style?
Why are we able to assign either of DataTemplate or ControlTemplate to the Template property which is of type ControlTemplate in the below markup:-
<Style TargetType="ListBox">
<Setter ...
0
votes
1answer
125 views
Can a silverlight control have both a DataTemplate and a ControlTemplate at once?
I suspect that the ContentControl which have a property of ContentTemplate is either a DataTemplate or a ControlTemplate depending on what each of derived silverlight control has declared it in its ...
0
votes
2answers
456 views
How to add an event handler to object in ControlTemplate
How to programmatically add an event handler to an object which exists only in ControlTemplate of another object?
I work with Silverlight 4. I want to use control ColorSelector from a third party DLL ...
2
votes
4answers
1k views
Bind a Path Stroke color to Foreground
Using the TabControl element for Silverlight in Blend I created the following markup:
<controls:TabControl>
<controls:TabItem Header="TabItem" Style="{StaticResource TabItemStyle1}" ...
2
votes
0answers
383 views
Validation Tooltip on TextBox becomes orphaned when changing tabs
I have a TextBox on a TabItem inside of a TabControl. Using INotifyDataError changed based validation, when there is an error in the TextBox and you focus on the TextBox a validation tooltip displays. ...
1
vote
1answer
240 views
How to bind data to a ListBox in a ControlTemplate?
What I am trying to do is to create some sort of "rooms"(like a chat group, a sharing center or whatever you want). All the room are created the same way, but each one of them contains different ...
1
vote
1answer
775 views
Visual-state in SilverLight? (how we use that)
Hi
I wrote simple template in xaml for button s.(for silver-light 4)
So when I try use "ControlTemplate.Triggers", I found that is impossible in silver-light, and we must use Visual-State in ...
0
votes
1answer
900 views
Silverlight TabItem template not working correctly
In a SL4 application i need to restyle my TabItems (actually add a button in the header).
So i took the TabItem's control template from here and added the functionality i wanted.
This seems to work ...