コード例 #1
0
        public Container()
        {
            controlManager = new ControlManager(this);
            focusManager   = new FocusManager();
            indexNavigator = new IndexNavigator(focusManager);

            Colors = new Colors()
            {
                Background = Color.Black,
                Foreground = Color.White
            };

            FocusFirstOnChange = false;
        }
コード例 #2
0
ファイル: IndexNavigatorTests.cs プロジェクト: lulzzz/lifti
 public IndexNavigatorTests()
 {
     this.index = new FullTextIndex <string>();
     this.index.Index("A", "Triumphant elephant strode elegantly with indifference to shouting subjects, giving withering looks to individuals");
     this.sut = new IndexNavigator(this.index.Root);
 }