Пример #1
0
 public WordCloudView(double width, double height)
 {
     this.Width = width;
     this.Height = height;
     controler = new Controler(this);
     controler.SetScreenSize(width, height);
     controler.Initialize();
     glowCloud = new GlowCloudView(controler);
     ForceDirectedCloud = new ForceDirectedCloudView(controler);
     this.Children.Add(glowCloud);
     this.Children.Add(ForceDirectedCloud);
     controler.StartUIThread();
 }
Пример #2
0
 public WordCloudView(double width, double height)
 {
     this.Width  = width;
     this.Height = height;
     controler   = new Controler(this);
     controler.SetScreenSize(width, height);
     controler.Initialize();
     glowCloud          = new GlowCloudView(controler);
     ForceDirectedCloud = new ForceDirectedCloudView(controler);
     this.Children.Add(glowCloud);
     this.Children.Add(ForceDirectedCloud);
     controler.StartUIThread();
 }