MSNPSharp/Example/RemoveContactForm.cs
2023-07-15 01:45:29 -03:00

40 lines
No EOL
728 B
C#

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();
}
}
}