Tagged Questions
The xamlreader tag has no wiki summary.
15
votes
2answers
388 views
Weird XAML parsing error when trying to set TextBox.IsReadOnly
I've managed to reduce this to a simple test case. An exception is thrown during the parsing of this XAML using XamlReader.Parse():
<DockPanel ...
5
votes
4answers
461 views
XamlReader.Load in a Background Thread. Is it possible?
A WPF app has an operation of loading a user control from a separate file using XamlReader.Load() method:
StreamReader mysr = new StreamReader(pathToFile);
DependencyObject rootObject = ...
4
votes
1answer
151 views
Bindings not applied to dynamically-loaded xaml
I'm using XamlReader successfully to load a xaml file and create a FrameworkElement to work with.
The xaml I'm loading has binding expressions in it such as:
<TextBlock Text="{Binding ...
3
votes
1answer
807 views
C# Attribute XmlIgnore and XamlWriter class - XmlIgnore not working
I have a class, containing a property Brush MyBrush marked as [XmlIgnore]. Nevertheless it is serialized in the stream causing trouble when trying to read via XamlReader.
I did some tests, e.g. when ...
3
votes
1answer
117 views
How to control prefixes of namespaces in XML document generated by XmlWriter - generated XAML with x:Type markup extension
I am trying to generate XAML from XElements.
<Style xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Style.BasedOn>
<StaticResource>
...
3
votes
2answers
711 views
Silverlight 4.0: DataTemplate Error
Im trying to get the specific template in my resource dictionary. This is my resource dictionary
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
3
votes
1answer
993 views
Using XamlReader for controls that does not have a default constructor
I have some string representations of Xaml objects, and I want to build the controls. I'm using the XamlReader.Parse function to do this. For a simple control such as Button that has a default ...
2
votes
1answer
91 views
XamlReader - mapping multiple CLR namespaces to single XML namespace
I have a WPF project with an AssemblyInfo.cs that groups multiple CLR namespaces into a single XML namespace:
[assembly: XmlnsDefinition("http://foo.bar", "MyLibary.Controls")]
[assembly: ...
2
votes
1answer
173 views
C# Create module catalog from XAML file
I have a problem with loading modules from a xaml file in the context of the prism library.
The xaml for the modules look like this:
<Modularity:ModuleCatalog ...
2
votes
1answer
42 views
How can I monitor the progress of a XamlWriter.Save() operation?
I have a FlowDocument I want to save, and later load.
I think I can do this with XamlWriter.Save() and XamlReader.Load().
It works, but it takes a long time. The time it takes is the time it ...
2
votes
2answers
373 views
Problems with XamlReader generating DataTemplate
I'm trying to implement the code below in my WPF project in order to generate DataTemplates on the fly for a DataGrid with dynamic columns. I found the code on StackOverflow here
public DataTemplate ...
2
votes
2answers
235 views
Accessing UIElement after XAML Load in WPF
I have a canvas being populated from a XAML load from a file using:
SBWindowContainerCanvas.Children.Clear();
StreamReader stringreader = new StreamReader("C:\\xaml\\xmltest.xaml");
...
2
votes
1answer
158 views
XamlWriter/Reader -> multiple constructor calls resulting in duplicate elements
i'm kind of stuck here. i'm using a dragndrop-library which serializes the dragged UIElements via XamlWriter.Save().
now i'm trying to dragndrop some instances of a class extending Grid. in the ...
2
votes
2answers
486 views
XamlReader.Parse throws exception on empty String
In our app, we need to save properties of objects to the same database table regardless of the type of object, in the form of propertyName, propertyValue, propertyType. We decided to use XamlWriter ...
1
vote
0answers
25 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
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
209 views
Can XamlReader load xaml that contains types defined in external assemblies?
The XamlReader is loading Xaml using types defined within the local assembly and the WPF assemblies without any problems.
If I include types defined within external assemblies then a ...
1
vote
2answers
206 views
How can I keep XamlReader.Load(xamlFile) from inserting extra Run elements?
Imagine I've got a FlowDocument like so:
<FlowDocument xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
ColumnWidth="400" FontSize="14" FontFamily="Georgia"
...
1
vote
0answers
240 views
C# objects Xaml factory method for XamlWriter
My class uses an image as Property (public Image myImage). When this class is serialized (XamlWriter) it works fine, reading it back gives an exception:
'No matching constructor found on type
...
1
vote
1answer
203 views
How to make loose Xaml content aware of custom controls
I have a loose XAML file...
<Style
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
1
vote
2answers
394 views
Creating a grid from string using XamlReader
I have a string representation of a XAML Grid like this:
<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Canvas Background="Yellow" ...
1
vote
1answer
498 views
Building a Silverlight DataTemplate in c# code
This might be more of an outcry, but building DataTemplates in Silverlight code seems to be impossible. The one option I am aware of being using XamlReader.Load(string), one is met with several issues ...
1
vote
1answer
692 views
Using Events/Commands with XamlReader
I am dynamically building my datatemplate using XamlReader.Parse(string). The problem I have is that I can't put any events on any of the controls I create using the XamlReader. After doing some ...
1
vote
1answer
448 views
Why does XamlReader throw when I use a ParserContext?
This works:
XamlReader.Parse("<Pig xmlns=\"clr-namespace:Farm;assembly=Farm\"/>");
This throws The tag 'Pig' does not exist in XML namespace 'clr-namespace:Farm;assembly=Farm':
var context = ...
1
vote
1answer
347 views
XamlWriter loses binding - ok! but how to keep the value? (ItemsControl)
i know the standard XamlWriter does not persist bindings. but what really stinks is that the current value the binding holds does not get serialized too.
my current - really stupid - workaround is to ...
1
vote
1answer
586 views
Serialize WPF component using XamlWriter without default constructor
Ive found out that you can serialize a wpf component, in my example a FixedDocument, using the XamlWriter and a MemoryStream:
FixedDocument doc = GetDocument();
MemoryStream stream = new ...
1
vote
0answers
339 views
XAML | When used XamlReader.Parse, not able to refer the items using the LogicalTreeHelper/VisualTreeHelper
I am setting the dynamic xaml (I am reading the xaml from the DB) for the content of a tab using the below statement.
Tab.Content = XamlReader.Parse(xaml, ctx)
After setting the content, if I try ...
1
vote
2answers
1k views
Silverlight 3.0 Custom ListBox DataTemplate has a checkbox, checked event not firing
The datatemplate for the ListBox is set dynamically by XamlReader.Load. I am subscribing to Checked event by getting the CheckBox object using VisualTreeHelper.GetChild. This event is not getting ...
1
vote
1answer
985 views
creating a HierarchicalDataTemplate in Silverlight with code
I'm trying to create a HierarchicalDataTemplate (from the Silverlight Toolkit) in code in Silverlight following this advice on creating DataTemplates from code: ...
1
vote
3answers
361 views
Silverlight 3 XamlReader Exception not caught
when I use XamlReader.Load() with an invalid XAML string, the resulting XAMLParseException is not caught although beeing in a try-catch-block:
try
{
UIElement xamlCode = ...
1
vote
2answers
345 views
WPF Update Control In Place Using XAMLReader
I have an existing item which is a child of a canvas. The item's style is contained in a resource dictionary that contains the various brushes that can be used to color the item.
When an instance of ...
1
vote
2answers
388 views
Why would adding an assembly in a XAML file give an error?
I've got an application that reads in XAML files dynamically like this:
StreamReader sr = new StreamReader(pathAndFileName);
this.Content = XamlReader.Load(sr.BaseStream);
In one of those XAML ...
0
votes
1answer
85 views
DataGridTemplateColumn with ComboBox and TextBlock
I am creating a DataGridTemplateColumn dynamically in my application. The reason for this, is because I have a TabControl and when the user wants to add a new Tab, a Datagrid is created in the ...
0
votes
1answer
64 views
XamlReader with Click Event
I am using XamlReader in my WPF project. And it works (My reference)
My current sample Xaml is like that:
<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Width="800" ...
0
votes
2answers
46 views
Give a name and declare event handler of a button Created at run time with C# XamlReader
I am working on a project in C# and WPF that dynamically creates a grid layout that has some text, an image, and a button. I create many of these grids, and add them to a stack panel. I create this ...
0
votes
0answers
38 views
Successfully referencing ResourceDictionary in file being loaded by XamlReader.Load()
I am building a common WP7 assembly which will display common help/about information for my apps, each app assembly will specify a pair of StackPanels which have some of the app specific information ...
0
votes
0answers
131 views
How to parse xaml file having custom class,to get the list of all objects?
I went through the tons of similar posts but nothing seems to work in my case. All I want to do is load a xaml file (located in some other assembly), and iterate through the different elements/objects ...
0
votes
5answers
135 views
Working with V.V.Big XAML file
Have you ever tried working with a XAML file which contains thousand tons of line of code. (More specifically Drawing Brushes for whole application in my case). This file is of 20+ MB size. Whenever i ...
0
votes
1answer
58 views
Is it possible to use XAML for my own ideas / framework?
Do you know if it would be possible to create a framework myself in C# that utilizes the good things that XAML offers, such as dependency properties and data binding?
Or would I have to create ...
0
votes
1answer
223 views
WPF: Replace the XAML of a page or usercontrol (both is ok) at runtime?
I know that it is possible to parse an XAML - file at runtime and create an UIElement which I can insert into my pages grid, no problem there.
But what I really want is to replace the whole XAML of ...
0
votes
1answer
691 views
WPF Richtextbox XamlWriter behaviour
I am trying to save some c# source code into the database. Basically I have a RichTextBox that users can type their code and save that to the database.
When I copy and paste from the visual studio ...
0
votes
1answer
241 views
How to access relatively places text files in folders below a Silverlight .xap file?
In a WPF application, I load in xaml files with the xamlreader by finding the current directory like this:
public static string GetApplicationDirectory()
{
return ...
0
votes
2answers
1k views
Is it possible to use XamlReader from a XAML file to load in a block of XAML text?
I use the following DataTemplate in many controls:
<pages:BasePageManageItems x:Class="TestApp.Pages.PageManageAddresses"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...