App.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using Bridge;
  2. using Bridge.Html5;
  3. using System;
  4. namespace Cbdx.Tests
  5. {
  6. public static class App
  7. {
  8. public static void Main()
  9. {
  10. Document.Body.InnerHTML = "Bind...ExternalDataExchangeDispatcher";
  11. var externalDataExchangeDispatcher = Script.Get<ExternalDataExchangeDispatcher>(nameof(Cbdx));
  12. Document.Body.InnerHTML = "Bind...DataExchangeServiceFactory";
  13. var dataExchangeServiceFactory = new DataExchangeServiceFactory(externalDataExchangeDispatcher);
  14. Document.Body.InnerHTML = "Bind...IWindowControlService";
  15. var windowControlService = dataExchangeServiceFactory.Create<IWindowControlService>();
  16. Document.Body.InnerHTML = "Bind...ICefDevService";
  17. var cefDevService = dataExchangeServiceFactory.Create<ICefDevService>();
  18. Document.Body.InnerHTML = "";
  19. new HTMLDivElement()
  20. .With(p => p.TextContent = "msg:")
  21. .With(p => p.OwnerDocument.Body.AppendChild(p));
  22. var label = new HTMLDivElement()
  23. .With(p => p.TextContent = "...")
  24. .With(p => p.OwnerDocument.Body.AppendChild(p));
  25. Window.OnResize += delegate { label.TextContent = windowControlService.GetWindowState().ToString(); };
  26. new HTMLInputElement { Type = InputType.Button, Value = "Reload" }
  27. .With(p => p.OnClick += delegate { windowControlService.Reload(); })
  28. .With(p => Document.Body.AppendChild(p));
  29. new HTMLInputElement { Type = InputType.Button, Value = "F12" }
  30. .With(p => p.OnClick += delegate { cefDevService.ShowF12(); })
  31. .With(p => Document.Body.AppendChild(p));
  32. new HTMLInputElement { Type = InputType.Button, Value = "DragMove" }
  33. .With(p => p.OnMouseDown += delegate { windowControlService.DragMove(); })
  34. .With(p => Document.Body.AppendChild(p));
  35. new HTMLInputElement { Type = InputType.Button, Value = "Max" }
  36. .With(p => p.OnClick += delegate { windowControlService.SetWindowState(WindowState.Maximized); })
  37. .With(p => Document.Body.AppendChild(p));
  38. new HTMLInputElement { Type = InputType.Button, Value = "Min" }
  39. .With(p => p.OnClick += delegate { windowControlService.SetWindowState(WindowState.Minimized); })
  40. .With(p => Document.Body.AppendChild(p));
  41. new HTMLInputElement { Type = InputType.Button, Value = "Restore" }
  42. .With(p => p.OnClick += delegate { windowControlService.SetWindowState(WindowState.Normal); })
  43. .With(p => Document.Body.AppendChild(p));
  44. new HTMLInputElement { Type = InputType.Button, Value = "Close" }
  45. .With(p => p.OnClick += delegate { windowControlService.CloseWindow(); })
  46. .With(p => Document.Body.AppendChild(p));
  47. var count = 0;
  48. new HTMLInputElement { Type = InputType.Button, Value = "Change title" }
  49. .With(p => p.OnClick += delegate { windowControlService.SetWindowTitle($"Title Changed {count++}"); })
  50. .With(p => Document.Body.AppendChild(p));
  51. }
  52. private static T With<T>(this T me, Action<T> action)
  53. {
  54. action(me);
  55. return me;
  56. }
  57. }
  58. }