00001 using System;
00002 using System.IO;
00003 using System.Net;
00004 using System.Windows;
00005 using System.Windows.Controls;
00006 using System.Windows.Data;
00007 using System.Windows.Media;
00008 using System.Windows.Media.Animation;
00009 using System.Windows.Navigation;
00010
00011 namespace Mcs.Epm.MpFx.Browser.Controls
00012 {
00013 public partial class Splash
00014 {
00015 public delegate void OnBuildOnCompleteEventHandler();
00016
00017 public event OnBuildOnCompleteEventHandler BuildOnComplete;
00018
00019 public Splash()
00020 {
00021 InitializeComponent();
00022
00023 }
00024
00025 private void Storyboard_Completed(object sender, EventArgs e)
00026 {
00027 if (BuildOnComplete != null)
00028 {
00029 BuildOnComplete();
00030 }
00031 }
00032 }
00033 }