Tagged Questions
The generic.xaml tag has no wiki summary.
6
votes
4answers
9k views
Using MergedDictionaries in generic.xaml in Silverlight 3
In WPF it was possible to organise the XAML for multiple user controls by keeping the markup in separate XAML files in the themes folder and then using MergedDictionaries to import them into ...
2
votes
1answer
691 views
WPF - Resource not loading from Generic.xaml
Themes\Generic.xaml:
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
...
2
votes
1answer
290 views
Generic.xaml - Referencing styles
If I have a Style inside Generic.xaml and I want to reference a style within the SAME Generic.xaml file why does it not work?
<Style TargetType="{x:Type w:SomeControlIWantToStyle}">
...
2
votes
1answer
1k views
In WPF, why does my Style in Generic.xaml not get applied to my Custom Control?
In WPF, I have a custom control that inherits from TreeView. The code is as follows...
public class CustomTRV : TreeView
{
static CustomTRV()
{
//Removed this because I want the ...
1
vote
1answer
30 views
WPF Custom Components and URIs
I have tried every way I can find to make my custom control understand URI packs - both in generic.xaml and code. All examples I find works fine in my user controls, but never in custom controls.
All ...
1
vote
1answer
100 views
XamlReader throws when loading generic.xaml to merge resource dictionaries
Trying to load generic.xaml in code but it throws a XamlParseException. Code as follows:
Uri uri = new Uri("Themes/Generic.xaml", UriKind.Relative);
StreamResourceInfo info = ...
1
vote
1answer
223 views
Loading WPF Style from Resource File
I am trying to load WPF Style from other file actually from WPF Custom Control Library
but i am failing to load here is my solution.
The solution contains two projects
WpfTestControls of Type WPF ...
1
vote
1answer
124 views
How to have a generic.xaml for Silverlight 3 and Silverlight 4?
My main problem with generic.xaml is Viewbox has moved assemblies.
How do I have the one generic.xaml file with a namespace for the location of the Viewbox that will compile in SL3 and SL4?
I looked ...
1
vote
0answers
321 views
Styling a Custom DataGrid with Generic.xaml
Sorry about the lengthy question. I hope it's not as complicated as it was to write it :)
I'm trying to style a custom DataGrid via Generic.xaml, and I'm finding some funny behavior. Here's what I've ...
1
vote
0answers
364 views
Using Style Setter in generic.xaml to set property of type Control crashes VS
In my main control Style in generic.xaml, I'm trying to set the default value of a property of my main control (and this property is of type Control), but this causes VS 2010 to crash when using ...
1
vote
2answers
369 views
Howto: Applying a Style defined in generic.xaml to a UserControl? (WPF)
I've created a style in generic.xaml that i want to use in my project on several UserControls. In the same way i have defined a style for a custom control and this one works so it seems generic.xaml ...
1
vote
1answer
577 views
Overriding styles defined in generic.xaml
I have a custom controls library, in which I defined a control template, that uses some custom styles. My control template is located in the Generic.xaml file, and the styles it uses are also located ...
0
votes
2answers
22 views
Silverlight MEF - importing resources and putting into generic.xmal
I have a silverlight application with generic.xaml file.
In the generic file I would like to merge dictionaries that are imported by MEF from other DLLs.
How can I do that ? (an example would be ...
0
votes
0answers
59 views
Extending Silverlight Controls and adding controls in XAML
I have some controls that I put up in a view and I decided that it would be best to combine these and make a custom control. I know how to extend a control and add dependency properties, but I don't ...
0
votes
0answers
208 views
How to create reusable themes in silverlight
Using Silverlight/Blend 4. I have I guess an architecture type question. I'm the main UI guy on a pretty new silverlight dev team - I mean we've all been using silverlight for about 2 months. Each ...
0
votes
0answers
69 views
WPF TreeView not virtualizing with custom styles
i've got a problem, i have classes deriving from TreeView and TreeViewItem, and i got a Generic.xaml with custom styles. In the Generic.xaml I have a different Style for the TreeView, which works ...
0
votes
2answers
83 views
Marking a custom control as internal throws exception
There is a custom control called TestCustomControl, it inherits from Control and it has a control template that is defined in generic.xaml.
It's the content of the Main Page.
If I mark it as public, ...
0
votes
0answers
65 views
Virtualization-Problem in TreeView when style in in Generic.xaml
i have a really weired problem, i have a Custom TreeView derived from TreeView, the same goes for the TreeViewItems. I have also a generic.xaml file where i put the default style for the tree.
It ...
0
votes
1answer
222 views
Setting the foreground[text] color of the button in a resource dictionary
I am defining a button style in Buttons.xaml file. Can you please tell me how to set the foreground property of the button? I need to use a gradient as foreground property. Code is as below. Right ...
0
votes
1answer
205 views
please explain what is themes and generic.xaml?
i noticed that when i create a custom control in visual studio it adds generic.xaml into the Themes folder.
what is the purpose of this folder, what is special about generic.xaml? why when i try to ...
0
votes
1answer
262 views
WPF: Locate Parent Window from ListView ViewBase
I have a ListView that allows the user to change the ViewBase through a Context Menu (it acts like a simplified version of windows explorer).
<ListView Name="lv" Grid.Row ="0" Grid.Column ="1" ...
0
votes
1answer
165 views
Splitting Generic.Xaml - problem loading merges set. Please help with Source
working on a pretty large library of controls the generic.xaml gets simpy out of control. I want to split it pretty much by control (although once for a namespace which contains only some simple ones ...
0
votes
1answer
357 views
Linked Themes/Generic.xaml Files will not work in visual studio 2008
i have a project that i am doing and i need to share the code between silverlight and WPF Assembly problem is that even though the wpf assembly is the owner of that file
and the silverlight assembly ...