예제 #1
0
        private void Banner_Click(object sender, EventArgs e)
        {
            PictureBox asPB = sender as PictureBox;

            if (asPB != null)
            {
                string url = asPB.Tag as string;

                if (url != null)
                {
                    PdnInfo.OpenUrl(this, url);
                }
            }
        }
예제 #2
0
 private void MoreInfoLink_Click(object sender, EventArgs e)
 {
     PdnInfo.OpenUrl(this, this.moreInfoTarget.ToString());
 }