using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace TradeIdeas.TIProGUI { //This is when the master Wpf control(i.e.WPF window that's embedded in winform, and the Winform size changes) resizes(happens when user resizes the Single Stock Winform public interface IMasterWindowResize { void onMasterWindowResize(SizeChangedEventArgs e); } }