示例#1
0
 private void OnPlatformCreated(PlatformEventArgs e)
 {
     if (this.PlatformCreated != null)
     {
         this.PlatformCreated(this, e);
     }
 }
示例#2
0
 private void OnPlatformDisposing(PlatformEventArgs e)
 {
     if (this.PlatformDisposing != null)
     {
         this.PlatformDisposing(this, e);
     }
 }
示例#3
0
 private void PlatformCreator_PlatformDisposing(object sender, PlatformEventArgs e)
 {
     this.platformService.OnPlatformDisposing(e);
 }