public Cloud_Window(MainWindow mainWindow) { InitializeComponent(); this.mainWindow = mainWindow; WordCloud = new WordCloudView(this.Width, this.Height); Closing += MainWindow_Closing; this.Container.Children.Add(WordCloud); }
public MainWindow() { InitializeComponent(); this.Width = 1600; this.Height = 900; wordCloud = new WordCloudView(this.Width,this.Height); Closing += MainWindow_Closing; this.Container.Children.Add(wordCloud); this.Left = 0; this.Top = 0; }
internal Controler(WordCloudView controlerView) { this.wordCloudView = controlerView; }