using System.Windows;
namespace mojoPortal.Silverlight.Common{
public interface IShellView
{
void CreateMenuItem(UIElement element, string title);
void CreateApplicationWindow(UIElement element, string title);
void CreateStatusItem(UIElement element, string title);
void CreateHelpWindow(UIElement element, string title);
void CreateBannerItem(UIElement element, string title);
}
}
|