public KumaHodaiMainForm() { InitializeComponent(); // 2回以上呼ぶと動作がおかしくなる! System.Net.ServicePointManager.Expect100Continue = false; LoadConfigurations(); oauth = new TwitterOAuth(); allTweets = new List<TwitterStatus>(); nowOnDisplayTweets = new List<TwitterStatus>(); ImageList imageList = new ImageList(); imageList.ImageSize = new Size(40, 40); TimelineListView.SmallImageList = imageList; AutoRefreshTimer.Start(); }
public KumaHodaiConfDialog(TwitterOAuth oauth, KumaHodaiConfig config) : this() { this.oauth = oauth; this.config = config; }