mirror of
https://github.com/RaySollium99/MSNPSharp.git
synced 2025-09-05 22:37:44 -04:00
Add the files
This commit is contained in:
parent
f52694709e
commit
50aabc8afc
312 changed files with 95444 additions and 0 deletions
40
Example/RemoveContactForm.cs
Normal file
40
Example/RemoveContactForm.cs
Normal file
|
@ -0,0 +1,40 @@
|
|||
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 RemoveContactForm : Form
|
||||
{
|
||||
|
||||
public bool RemoveFromAddressBook
|
||||
{
|
||||
get
|
||||
{
|
||||
return cbRemove.Checked;
|
||||
}
|
||||
}
|
||||
|
||||
public bool Block
|
||||
{
|
||||
get
|
||||
{
|
||||
return cbBlock.Checked;
|
||||
}
|
||||
}
|
||||
|
||||
public RemoveContactForm()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void btn_Click(object sender, EventArgs e)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue