/// <summary>
        /// Creates and initializes a new instance of a <see cref="WriteableControllerView"/> object.
        /// </summary>
        /// <param name="controller">The controller on which the view is attached.</param>
        public static IWriteableControllerView Create(IWriteableController controller)
        {
            WriteableControllerView View = new WriteableControllerView(controller);

            View.Init();
            return(View);
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="WriteableControllerView"/> class.
 /// </summary>
 /// <param name="controller">The controller on which the view is attached.</param>
 private protected WriteableControllerView(IWriteableController controller)
     : base(controller)
 {
 }