コード例 #1
0
ファイル: Helpers.cs プロジェクト: andyhebear/extramegablob
 public virtual void SetPictureBoxImageLocation(PictureBox Object, String Location)
 {
     if (this.InvokeRequired)
     {
         SetPictureBoxImageLocationDelegate dele = new SetPictureBoxImageLocationDelegate(SetPictureBoxImageLocation2);
         this.Invoke(dele, new object[] { Object, Location });
     }
     else
     {
         SetPictureBoxImageLocation2(Object, Location);
     }
 }
コード例 #2
0
ファイル: Windows.cs プロジェクト: Sajaki/uniuploader
 public virtual void SetPictureBoxImageLocation(PictureBox Object, String Location)
 {
     if (this.InvokeRequired)
     {
         SetPictureBoxImageLocationDelegate dele = new SetPictureBoxImageLocationDelegate(SetPictureBoxImageLocation2);
         this.Invoke(dele, new object[] { Object, Location });
     }
     else
     {
         SetPictureBoxImageLocation2(Object, Location);
     }
 }