Add the files

This commit is contained in:
iPedroLB 2023-07-15 01:45:29 -03:00
parent f52694709e
commit 50aabc8afc
312 changed files with 95444 additions and 0 deletions

50
Example/AddContactForm.cs Normal file
View file

@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace MSNPSharpClient
{
public partial class AddContactForm : Form
{
public AddContactForm(string account)
{
InitializeComponent();
if (!String.IsNullOrEmpty(account))
{
this.account = account;
txtAccount.Text = account;
}
}
private string account;
public string Account
{
get
{
return account;
}
}
private string invitationMessage;
public string InvitationMessage
{
get
{
return invitationMessage;
}
}
private void btn_Click(object sender, EventArgs e)
{
account = txtAccount.Text;
invitationMessage = txtInvitation.Text;
Close();
}
}
}