mirror of
https://github.com/RaySollium99/MSNPSharp.git
synced 2025-09-03 21:57:44 -04:00
40 lines
No EOL
728 B
C#
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();
|
|
}
|
|
}
|
|
} |