コード例 #1
0
 public Cloud_Window(MainWindow mainWindow)
 {
     InitializeComponent();
     this.mainWindow = mainWindow;
     WordCloud       = new WordCloudView(this.Width, this.Height);
     Closing        += MainWindow_Closing;
     this.Container.Children.Add(WordCloud);
 }
コード例 #2
0
        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;
        }