-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPopupContainerEditOKButton.cs
36 lines (31 loc) · 1.16 KB
/
PopupContainerEditOKButton.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DevExpress.XtraEditors;
using System.ComponentModel;
namespace PopupContainerControlWithOKButton
{
class PopupContainerEditOKButton : PopupContainerEdit
{
// static constructor
static PopupContainerEditOKButton() { RepositoryItemPopupContainerEditOKButton.RegisterPopupContainerEditOKButton(); }
// public constructor
public PopupContainerEditOKButton() { }
// ovverride property
public override string EditorTypeName
{
get { return RepositoryItemPopupContainerEditOKButton.PopupContainerEditOKButtonEditorName; }
}
// property as corresponded repositoryitem
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public new RepositoryItemPopupContainerEditOKButton Properties
{
get { return base.Properties as RepositoryItemPopupContainerEditOKButton; }
}
protected override DevExpress.XtraEditors.Popup.PopupBaseForm CreatePopupForm()
{
return new PopupContainerFormOkButton(this);
}
}
}