コード例 #1
0
 /// <summary>
 /// Called when a this instance becomes the active content in a frame.
 /// </summary>
 /// <param name="e">An object that contains the navigation data.</param>
 public void OnNavigatedTo(FirstFloor.ModernUI.Windows.Navigation.NavigationEventArgs e)
 {
     isInitialized = false;
     ComboBoxDropdownExtensions.SetOpenDropDownAutomatically(this.cbSuite, ExecutionContext.SettingsViewModel.HoverBehaviorDropDown);
     ComboBoxDropdownExtensions.SetOpenDropDownAutomatically(this.cbPriority, ExecutionContext.SettingsViewModel.HoverBehaviorDropDown);
     ComboBoxDropdownExtensions.SetOpenDropDownAutomatically(this.cbTeamFoundationIdentityNames, ExecutionContext.SettingsViewModel.HoverBehaviorDropDown);
 }
コード例 #2
0
 /// <summary>
 /// Handles the MouseMove event of the cbPriority control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="MouseEventArgs"/> instance containing the event data.</param>
 private void cbPriority_MouseMove(object sender, MouseEventArgs e)
 {
     ComboBoxDropdownExtensions.cboMouseMove(sender, e);
 }
コード例 #3
0
 /// <summary>
 /// Handles the MouseMove event of the cbTeamFoundationIdentityNames control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="MouseEventArgs"/> instance containing the event data.</param>
 private void cbTeamFoundationIdentityNames_MouseMove(object sender, MouseEventArgs e)
 {
     ComboBoxDropdownExtensions.cboMouseMove(sender, e);
 }
コード例 #4
0
 /// <summary>
 /// Called when a this instance becomes the active content in a frame.
 /// </summary>
 /// <param name="e">An object that contains the navigation data.</param>
 public void OnNavigatedTo(NavigationEventArgs e)
 {
     isInitialized = false;
     ComboBoxDropdownExtensions.SetOpenDropDownAutomatically(this.cbTestPlans, ExecutionContext.SettingsViewModel.HoverBehaviorDropDown);
 }
コード例 #5
0
 /// <summary>
 /// Handles the MouseMove event of the cbTestPlans control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.Windows.Input.MouseEventArgs"/> instance containing the event data.</param>
 private void cbTestPlans_MouseMove(object sender, System.Windows.Input.MouseEventArgs e)
 {
     ComboBoxDropdownExtensions.cboMouseMove(sender, e);
 }
コード例 #6
0
 /// <summary>
 /// Called when a this instance becomes the active content in a frame.
 /// </summary>
 /// <param name="e">An object that contains the navigation data.</param>
 public void OnNavigatedTo(NavigationEventArgs e)
 {
     ComboBoxDropdownExtensions.SetOpenDropDownAutomatically(this.cbThemes, ExecutionContext.SettingsViewModel.HoverBehaviorDropDown);
 }
コード例 #7
0
 /// <summary>
 /// Handles the Checked event of the CheckBox control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param>
 private void CheckBox_Checked(object sender, RoutedEventArgs e)
 {
     ComboBoxDropdownExtensions.SetOpenDropDownAutomatically(this.cbThemes, ExecutionContext.SettingsViewModel.HoverBehaviorDropDown);
 }