예제 #1
0
파일: TestForm.cs 프로젝트: sempuki/code
 private Content CoerceContent(SyncEventArgs args)
 {
     return new Content() { Clip = null, ContentType = args.ContentType, Description = args.Content };
 }
예제 #2
0
파일: ClipManager.cs 프로젝트: sempuki/code
 protected void OnContentSynced(SyncEventArgs e)
 {
     if (ContentSynced != null)
         ContentSynced(this, e);
 }