CalDavSynchronizer.Ui.AboutForm.AboutForm C# (CSharp) Method

AboutForm() public method

public AboutForm ( Action checkForUpdatesActionAsync ) : System
checkForUpdatesActionAsync Action
return System
    public AboutForm (Action checkForUpdatesActionAsync)
    {
      _checkForUpdatesActionAsync = checkForUpdatesActionAsync;
      InitializeComponent();
      _versionLabel.Text = string.Format (_versionLabel.Text, Assembly.GetExecutingAssembly().GetName().Version);

      this._linkLabelProject.Text = WebResourceUrls.ProjectHomeSite.ToString();

      _linkLabelTeamMembers.LinkClicked += _linkLabelTeamMembers_LinkClicked;
      _linkLabelTeamMembers.Text = string.Empty;
      AddTeamMember ("Alexander Nimmervoll", "http://sourceforge.net/u/nimm/profile/");
      AddTeamMember ("Gerhard Zehetbauer", "http://sourceforge.net/u/nertsch/profile/");
      _logoPictureBox.Image = Properties.Resources.outlookcaldavsynchronizerlogoarrow;
    }