Tagged Questions

2
votes
1answer
28 views

Manage localization with Baml

Hi guys, 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 …
3
votes
2answers
131 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# …
0
votes
1answer
276 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 …
0
votes
1answer
143 views

BAML obfuscation

Is there any tool / commercial obfuscator that can obfuscate BAML resources in WPF controls? If not, its a tough time in terms of IP protection sicne hackers can easily peek into the BAML resource by …
1
vote
1answer
471 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 …
2
votes
3answers
537 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?
2
votes
1answer
286 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 …