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); }
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); }