public CPWindow() { Closing += closing; setVisualStyle(); top = new TopArea(); content = buildContent(); setContent(); }
public CPWindow(string _windowTitle) { windowTitle = _windowTitle; Closing += closing; setVisualStyle(); top = new TopArea(); content = new Grid(); content.Children.Add(buildContent()); setContent(); }