Skip to content

Instantly share code, notes, and snippets.

@jacksonh
Created August 26, 2010 17:20
Show Gist options
  • Save jacksonh/551805 to your computer and use it in GitHub Desktop.
Save jacksonh/551805 to your computer and use it in GitHub Desktop.
diff --git a/class/System.Windows/Mono.Xaml/XamlParser.cs b/class/System.Windows/Mono.Xaml/XamlParser.cs
index ded7b4d..101c476 100644
--- a/class/System.Windows/Mono.Xaml/XamlParser.cs
+++ b/class/System.Windows/Mono.Xaml/XamlParser.cs
@@ -383,6 +383,11 @@ namespace Mono.Xaml {
XamlObjectElement element = new XamlObjectElement (this, reader.LocalName, t, o);
+ if (reader.LocalName == "FilterPaneViewModel") {
+ PropertyInfo p = t.GetProperty ("ClearAllFiltersCommand");
+ Console.WriteLine ("CLEAR ALL FILTERS VALUE: {0}", p.GetValue (o, null));
+ }
+
if (IsTemplateElement (element)) {
ParseTemplateElement (element);
return;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment