Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Managed.Windows.Forms/System.Windows.Forms/SplitContainer.cs')
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/SplitContainer.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SplitContainer.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SplitContainer.cs
index d0b1730695b..38dda5712a8 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SplitContainer.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/SplitContainer.cs
@@ -42,6 +42,9 @@ namespace System.Windows.Forms
[Docking (DockingBehavior.AutoDock)]
[Designer ("System.Windows.Forms.Design.SplitContainerDesigner, " + Consts.AssemblySystem_Design)]
public class SplitContainer : ContainerControl
+#if NET_4_0
+ , ISupportInitialize
+#endif
{
#region Local Variables
private FixedPanel fixed_panel;
@@ -471,6 +474,18 @@ namespace System.Windows.Forms
#endregion
#region Public Methods
+#if NET_4_0
+ [MonoTODO]
+ public void BeginInit ()
+ {
+ }
+
+ [MonoTODO]
+ public void EndInit ()
+ {
+ }
+#endif
+
public void OnSplitterMoved (SplitterEventArgs e)
{
SplitterEventHandler eh = (SplitterEventHandler)(Events [SplitterMovedEvent]);