Tagged Questions
0
votes
0answers
45 views
ControlTemplate doesn't find Resources anymore
I first created a UserControl.
In the xaml I can reference StaticResources that are in the main Application's Resources.
I then refactored this UserControl to a Control and via Themes/Generic.xaml,
I ...
0
votes
0answers
267 views
Custom resource dictionary inside ControlTemplate or DataTemplate
EDIT: This problem occurs when using the standard .NET ResourceDictionary as well and appears to be an issue with using resource dictionaries inside control or data templates.
I have a custom ...
2
votes
3answers
290 views
Include XAML Trigger To ControlTemplate
I am pretty new with WPF and am doing some custom control stuff...
My problem is that the code in one file is going to be way to much, so i want
to split the code in seperate files, so other people ...
0
votes
0answers
134 views
Raising an event from a ControlTemplate defined in a ResourceDictionary
I have a CustomDataGrid called MdtDataGrid. It gets its resources from a ResourceDictionary named MDTDataGridTemplate. In the ControlTemplate I have created a special button that will appear above ...
4
votes
2answers
846 views
Why is x:key required on ControlTemplate in the ResourceDictionary
Consider the following XAML file:
<Window x:Class="ExpressionVisualizer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
1
vote
0answers
60 views
ResourceDict share & set Template
I will use XAMLReader to load wpf screens.
I have some ControlTemplates on Buttons.xaml file and i am keeping it in a common class library (ClassLibrary1).
Buttons.xaml is like that:
...
1
vote
1answer
171 views
ContentControl does not render at another Assembly
I created some custom control in main assembly (WPF Application) and tested it - all was be ok. Then I replaced this control to the separate assembly (EB.Controls).
At the start up assembly (WPF ...
1
vote
1answer
427 views
Close, minimize and maximize events do not work in a custom WPF form template
I'm designing a custom form in a WPF ResourceDictionary using a controltemplate so I can easily use the window later on. I'm designing it with Expression Blend and I'm stuck on getting the close, ...
4
votes
2answers
891 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 ...
0
votes
1answer
549 views
Image shows in Expression Blend but not during runtime
The image in question is located in a ControlTemplate inside of a ResourceDictionary similar to this (various details removed for clarity):
<ResourceDictionary
...
82
votes
4answers
45k views
ResourceDictionary in a separate assembly
I have resource dictionary files (MenuTemplate.xaml, ButtonTemplate.xaml, etc) that I want to use in multiple separate applications. I could add them to the applications' assemblies, but it's better ...