Tagged Questions
6
votes
2answers
1k views
Why XAML is compiled into BAML and not in C#
As far as I know, everything done in XAML can be done in C#.
Why XAML is compiled in BAML and not in C# ? Wouldn't be more efficient to parse the XAML a compile-time and create the corresponding C# ...
5
votes
2answers
2k views
4
votes
2answers
1k views
3
votes
1answer
725 views
How to convert an assemblies BAML to XAML?
How do I walk through an assemblies BAML resources and convert them back to XAML?
1
vote
1answer
173 views
How can I get the actual XAML from a template object in code (or can I)?
Not sure if this is possible, but if I have a template object (passed in to the OnApplyTemplate override) is there any way I can examine the string-representation of the XAML that makes it up? I know ...
0
votes
0answers
26 views
System.Xaml.XamlParseException: “Found unknown BAML record …”
My app throws the following exception only the first time it is run on my test machine (32bit WinXP):
System.Xaml.XamlParseException: "Found unknown BAML record 97".
at ...
0
votes
1answer
376 views
How to decompile complex BAML to valid XAML
I tried ILSpy, but it failed:
System.NotImplementedException: StaticResourceStart
в Ricciolo.StylesExplorer.MarkupReflection.XmlBamlReader.ProcessNext()
в ...
0
votes
2answers
146 views
WPF MarkupExtension to Determine Assembly in which XAML is Embedded
I have a WPF project (in .NET 4.0) with XAML resources embedded in as assembly as Pages. In the XAML, I need to have MarkupExtension that is declared in another assembly that has no specific knowledge ...
0
votes
1answer
363 views
Performance problem loading lots of user controls
My application is loading a bunch of the same user control into a ScrollPanel. The problem is, this is very slow.
The profiler show that the method Application.LoadComponent(), which is called ...
0
votes
1answer
1k views
XAML to C# conversion tool
Is there a XAML to C# conversion tool?
I have a control template defined in XAML, but I want to create this template and it's styles using C#, so I can obfuscate the code version (since I can't ...