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