Skip to content

Instantly share code, notes, and snippets.

@biac
Created June 11, 2012 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biac/2909098 to your computer and use it in GitHub Desktop.
Save biac/2909098 to your computer and use it in GitHub Desktop.
Kujian - DataModel/SampleDataSource (変更前)
public SampleDataSource()
{
String ITEM_CONTENT = String.Format("Item Content: {0}\n\n{0}\n\n{0}\n\n{0}\n\n{0}\n\n{0}\n\n{0}",
"Curabitur class …中略…");
var group1 = new SampleDataGroup("Group-1",
"Group Title: 1",
"Group Subtitle: 1",
"Assets/DarkGray.png",
"Group Description: Lorem ipsum …中略… ante a ante");
group1.Items.Add(new SampleDataItem("Group-1-Item-1",
"Item Title: 1",
"Item Subtitle: 1",
"Assets/LightGray.png",
"Item Description: Pellentesque porta …中略… ac erat.",
ITEM_CONTENT,
group1));
// 中略
this.AllGroups.Add(group1);
// 後略
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment