Example #1
0
 private void ShowHotelIntroVideo()
 {
     _hotelVideoControl = new HotelVideoControl();
     _hotelVideoControl.SetVideo(ConfigurationManager.AppSettings["IntroVideoPath"]);
     _hotelVideoControl.Load(FrameworkManager, 200, (Height / 2) - 400);
     _hotelVideoControl.Closed += HotelVideoControlCloseClick;
 }
Example #2
0
 private void HotelVideoControlCloseClick(object sender, EventArgs e)
 {
     _hotelVideoControl = null;
     HotelExplorer.GetInstance().ClearChoices();
 }