using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; namespace Foo.ClientServices.ButtonWPForm { /// /// This interface defines the communication from ButtonForm to /// it's ButtonFormPage Client /// [ComVisible(false)] public interface IButtonFormPage { ButtonForm ParentWPFContainer { get; set; } } }