Outlook2013CalendarAddIn/Outlook2013TodoAddIn/Forms/FormRecurringOpen.cs
gamosoft_cp ef0f86d79d Refactored code a bit.
Moved configuration to separate form.
Added option to show past appointments from the selected day (previous in time, that is).
Added some tooltips.
2013-06-27 18:30:15 +00:00

34 lines
781 B
C#

using System.Windows.Forms;
namespace Outlook2013TodoAddIn.Forms
{
/// <summary>
/// Mimic Outlook's popup to open one instance or the whole series
/// </summary>
public partial class FormRecurringOpen : Form
{
#region "Properties"
/// <summary>
/// Whether the user wants to retrieve all instances or not
/// </summary>
public bool OpenRecurring
{
get { return this.rbtnAll.Checked; }
}
#endregion "Properties"
#region "Methods"
/// <summary>
/// Open the form
/// </summary>
public FormRecurringOpen()
{
InitializeComponent();
}
#endregion "Methods"
}
}