1,wpf最好使用通用模板,使用StaticResource引用樣式
囊謙網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營(yíng)維護(hù)。創(chuàng)新互聯(lián)成立于2013年到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
2,釋放事件。每個(gè)UserControl,Page,Window都實(shí)現(xiàn)一個(gè)接口
interface IUIElement : IDisposable
{
///
/// 注冊(cè)事件
///
void EventsRegistion();
///
/// 解除事件注冊(cè)
///
void EventDeregistration();
}
來注冊(cè)事件和解除事件
3,定時(shí)回收垃圾
DispatcherTimer GCTimer=new DispatcherTimer();
public MainWindow()
{
InitializeComponent();
this.GCTimer.Interval= TimeSpan.FromMinutes(10);//垃圾釋放定時(shí)器 我定為每十分鐘釋放一次,大家可根據(jù)需要修改
this.GCTimer.start();
this.EventsRegistion(); // 注冊(cè)事件
}
publicvoid EventsRegistion()
{
this.GCTimer.Tick+=new EventHandler(OnGarbageCollection);
}
publicvoid EventDeregistration()
{
this.GCTimer.Tick-=new EventHandler(OnGarbageCollection);
}
void OnGarbageCollection(object sender, EventArgs e)
{
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
}