Skip to content

Instantly share code, notes, and snippets.

@Injac
Last active August 29, 2015 14:27
Show Gist options
  • Save Injac/ce6b12f02203d99746e1 to your computer and use it in GitHub Desktop.
Save Injac/ce6b12f02203d99746e1 to your computer and use it in GitHub Desktop.
QuickFix for Syncfusion UWP Sample Browser
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.Xaml.Controls;
namespace Common
{
public class SampleViewItem
{
public string Type
{
get;
set;
}
public string Header
{
get;
set;
}
public bool IsNew
{
get;
set;
}
public bool IsUpdated
{
get;
set;
}
public bool IsPreview
{
get;
set;
}
public bool IsVS2013
{
get;
set;
}
//The following two propterties had to be added
public Control Content
{
get; set;
}
public bool EnableOptions
{
get; set;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment