LightSwitch V1.0 正式发布,配套控件收集 !

Switchlight V1.0 正式发布,配套控件相继发布,收集如下:

1、Devexpress LightSwitch Reporting 

               http://www.devexpress.com/Products/NET/Reporting/lightswitch.xml

 

2、   NetAdvantage for  Microsoft's Visual Studio LightSwitch

http://www.infragistics.com/dotnet/netadvantage/lightswitch-controls.aspx#Overview

http://www.infragistics.com/Downloads/Handler/Default.aspx?DownloadCode=a6fb75eefc4c41b2a89fe56022b16a5c&EmailSent=1

 

public void Refresh<T>(this IList<IActiveScreen> screenList) where T: IScreenObject
{
var screens = screenList.Where((x) => x.Screen is T);

foreach (var s in screens)
{
var screen = (T)s.Screen;

screen.Details.Dispatcher.BeginInvoke(() => <br/>            {
screen.Refresh();
});
}
}

//this code goes in the code of the child screen
private void DetailScreen_Saved()
{
this.Refresh<ParentScreenType>;
}

原文地址:https://www.cnblogs.com/zengxinle/p/2119036.html