Example #1
0
 public override void InitRemotable(DextopRemote remote, DextopConfig config)
 {
     base.InitRemotable(remote, config);
     Remote.RemoteHostType = "Showcase.demos.LiveGridWindow";
     Remote.AddLiveStore("model", store);
     Remote.AddLookupData("Type", new [] {
         new object[] { Type.Security, "Security" },
         new object[] { Type.Bond, "Bond" },
     });
 }
Example #2
0
        public override void InitRemotable(DextopRemote remote, DextopConfig config)
        {
            base.InitRemotable(remote, config);
            Remote.RemoteHostType = "Showcase.demos.LiveChartWindow";
            Remote.AddLiveStore("model", store);

#if DEBUG
            timer = new Timer(OnTimer, null, 100, 300);
#else
            timer = new Timer(OnTimer, null, 100, 2000);
#endif
        }
Example #3
0
 public override void InitRemotable(DextopRemote remote, DextopConfig config)
 {
     base.InitRemotable(remote, config);
     Remote.AddLiveStore("model", store);
     windows.TryAdd(this, 1);
 }
Example #4
0
 public override void InitRemotable(DextopRemote remote, DextopConfig config)
 {
     base.InitRemotable(remote, config);
     Remote.RemoteHostType = "Showcase.demos.LiveGridWindow";
     Remote.AddLiveStore("model", store);
 }