상속: System.EventArgs
예제 #1
0
파일: MainForm.cs 프로젝트: thinhils/Nikita
 private void webKitBrowser1_FaviconAvaiable(object sender, WebKit.FaviconAvailableEventArgs e)
 {
     if (e.Favicon != null)
     {
         fav.Visible = true;
         fav.Image   = e.Favicon.ToBitmap();
     }
     else
     {
         fav.Visible = false;
     }
 }
예제 #2
0
 void wb_FaviconAvaiable(object sender, FaviconAvailableEventArgs e)
 {
     ((Form)((WebKitBrowser)sender).Parent).Icon = e.Favicon;
 }