• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

OmegaChartのソースコードの保守


File Info

Rev. 9cd2e32808deefe5bc4041be433772fef9fe3cbe
Tamaño 781 octetos
Tiempo 2017-03-03 18:40:22
Autor panacoran
Log Message

上場してから出来高のない銘柄でスクリーニングが失敗するのを再度直す

Content

/*
 * Copyright (c) Daisuke OKAJIMA    All rights reserved.
 * 
 * $Id$
 */
using System;
using System.IO;
using System.Text;
using System.Diagnostics;
using System.Windows.Forms;
using Zanetti.Data;
using Zanetti.Commands;

namespace Zanetti.UI
{
	//銘柄リストを表示できるコントロールの基底クラス。
	internal abstract class BrandListPane : UserControl
	{

		public abstract AbstractBrand NextBrand { get; }
		public abstract AbstractBrand PrevBrand { get; }

		protected override void OnGotFocus(EventArgs e) {
			base.OnGotFocus (e);

			Env.Frame.CurrentBrandListPane = this;
		}
		protected override void OnVisibleChanged(EventArgs e) {
			base.OnVisibleChanged (e);
			if(this.Visible)
				Env.Frame.CurrentBrandListPane = this;
		}
		
	}
}