Menu

[r1]: / trunk / GoogleContactsSync / AboutForm.cs  Maximize  Restore  History

Download this file

38 lines (33 with data), 991 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WebGear.GoogleContactsSync
{
public partial class AboutForm : Form
{
private string urlPath;
public AboutForm(string _title, string _url,string _text, string _copyright, Image _image)
{
InitializeComponent();
Text += " " + _title;
title.Text = _title;
textBox.Text = _text;
imageBox.Image = _image;
url.Text = _url;
urlPath = _url;
copyrightLabel.Text = _copyright;
}
private void bClose_Click(object sender, EventArgs e)
{
Close();
}
private void url_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start(urlPath);
}
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.