예제 #1
0
 public tagInfoPage()
 {
     InitializeComponent();
     SystemTray.SetProgressIndicator(this, prog);
     wbh = new WebBrowserHelper(tagDescription);
     wbh.ScrollDisabled = false;
 }
예제 #2
0
 public trackInfoPage()
 {
     InitializeComponent();
     this.DataContext = currTrack;
     SystemTray.SetProgressIndicator(this, prog);
     wbh = new WebBrowserHelper(trackDescription);
     wbh.ScrollDisabled = false;
 }
예제 #3
0
 public artistInfoPage()
 {
     InitializeComponent();
     this.DataContext = currArtist;
     prog = new ProgressIndicator();
     SystemTray.SetProgressIndicator(this, prog);
     this.Loaded += new RoutedEventHandler(artistInfoPage_Loaded);
     wbh = new WebBrowserHelper(artistDescription);
     wbh.ScrollDisabled = false;
 }