예제 #1
0
파일: MainWindow.cs 프로젝트: txdv/smuxi
 public MainWindow()
     : base(null, "MainWindow.stfl")
 {
     _ChatViewManager = new ChatViewManager(this);
     _Entry = new Entry(this, _ChatViewManager);
     _UI = new StflUI(_ChatViewManager);
     Assembly asm = Assembly.GetExecutingAssembly();
     _ChatViewManager.Load(asm);
 }
예제 #2
0
        public MainWindow() : base(null, "MainWindow.stfl")
        {
            _ChatViewManager = new ChatViewManager(this);
            _Entry           = new Entry(this, _ChatViewManager);
            _UI = new StflUI(_ChatViewManager);
            Assembly asm = Assembly.GetExecutingAssembly();

            _ChatViewManager.Load(asm);
        }
예제 #3
0
        public MainWindow()
            : base(null, "MainWindow.stfl")
        {
            ChatViewManager = new ChatViewManager(this);
            Entry = new Entry(this, ChatViewManager);
            UI = new StflUI(ChatViewManager);

            if (StflApi.IsXterm) {
                ShowTitle = false;
            }

            Assembly asm = Assembly.GetExecutingAssembly();
            ChatViewManager.Load(asm);
        }
예제 #4
0
파일: MainWindow.cs 프로젝트: shubhtr/smuxi
        public MainWindow() : base(null, "MainWindow.stfl")
        {
            ChatViewManager = new ChatViewManager(this);
            Entry           = new Entry(this, ChatViewManager);
            UI = new StflUI(ChatViewManager);

            Resized += OnResized;
            if (StflApi.IsXterm)
            {
                ShowTitle = false;
            }

            Assembly asm = Assembly.GetExecutingAssembly();

            ChatViewManager.Load(asm);
        }