Is there a way to hide the window title bar?
According to the WPF docs the following should work but it does not seem to.
foreach (var window in NinjaTrader.Core.Globals.AllWindows)
{[INDENT]window.Dispatcher.Invoke(new Action(() =>
{[/INDENT][INDENT=2]if (window.Title=="Market Analyzer")
{
window.WindowStyle=WindowStyle.None;
}[/INDENT][INDENT]
}));[/INDENT]
}

Comment