Skip to content

Instantly share code, notes, and snippets.

@mrlacey
Created November 8, 2016 12:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrlacey/69465b3297726abbd0635e00bb95a5a9 to your computer and use it in GitHub Desktop.
Save mrlacey/69465b3297726abbd0635e00bb95a5a9 to your computer and use it in GitHub Desktop.
using Windows.UI.Xaml.Controls;
namespace OnlyIn
{
public class DebugBuild : ContentControl
{
protected override void OnApplyTemplate()
{
base.OnApplyTemplate();
#if !DEBUG
this.Content = null;
#endif
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment