ソース掲示板




すべてから検索

キーワード   条件 表示 現行ログ 過去ログ トピックス 名前 本文

  メンテナンス 前画面に戻る

対象スレッド 件名: JsonData.cs
名前: lightbox
処理選択
パスワード

件名 JsonData.cs
名前 lightbox
コメント
@DIV
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;

namespace PhoneApp7
{
	public class JsonData
	{
		public JsonData()
		{
			// 3つ入る場所を確保(中は null)
			this.ListBoxContent = new string[3];
		}
		public bool CheckBoxSetting { get; set; }
		public int ListBoxSetting { get; set; }
		public string[] ListBoxContent { get; set; }

		public bool RadioButton1Setting { get; set; }
		public bool RadioButton2Setting { get; set; }
		public bool RadioButton3Setting { get; set; }
		
	}
}
@END