Tagged Questions
11
votes
3answers
690 views
Obfuscator which supports WPF properly
What options exist for a good obfuscator tool for .NET which propertly support WPF in .NET 4.0?
In particular, which obfuscation tools handle rewriting of BAML within WPF assemblies, and handle ...
10
votes
3answers
4k views
BAML Decompiler / Viewer
Could anyone recommend a good BAML Decompiler / Viewer besides BAML Viewer plugin for Reflector, which doesn't handle path geometry/data?
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
1answer
175 views
Manage localization with Baml
I'm developping a little application in WPF and I want to localize my resources.
I've always used resources files (.resx), but I heard about BAML that was suppose to change the way of manage ...
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?
2
votes
1answer
76 views
In what assembly are the WPF UI BAML files?
I've seen them before, but I can't seem to find them.
The .baml files for WPF controls are found under an embedded resource called ???.g.resources where ??? is the name of the assembly.
I've looked ...
2
votes
1answer
724 views
How can I use NAnt to compile WPF controls
I have a WPF project and I'm trying to setup a NAnt build script for it. The problem is that when it tries to compile the WPF controls, the .g.cs files are not being generated as they are when ...
1
vote
1answer
174 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 ...
1
vote
2answers
1k views
Localizing a WinForms Application with Embedded WPF User Controls
The application I'm trying to localize is a WinForms application that has a few hosted WPF user controls (WPF user controls hosted in an ElementHost WinForms control).
I use resx files to localize ...
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
26 views
BAML Error When Animating
I have the following code in a WPF 4 project, linked to an imagebox. I have four other similar instances of it that work perfectly. Why is this one throwing that vague "BAML" error we all hate (it ...
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 ...