Unplanned
Last Updated: 17 Jan 2024 10:44 by Ugnius
Data validation dialog buttons should respond to the Enter or Esc keys (Retry, Cancel).
Unplanned
Last Updated: 20 Feb 2024 07:36 by Premkumar
Provide a way so one can change the default cell editor with a custom one.
Unplanned
Last Updated: 29 Feb 2024 12:10 by Premkumar
Implement auto complete for ListDataValidationRule like in Excel.
Unplanned
Last Updated: 09 May 2024 07:23 by n/a
Add sheet list that allows activating a sheet similar to Excel.
Unplanned
Last Updated: 20 Jun 2024 08:49 by Robby
Add support for digital signature in the XLSX format.
Unplanned
Last Updated: 23 Oct 2024 08:43 by Martin Ivanov

The numeric box that allows you to select the "to" page in the PrintPreviewControl is clipped when the "Pages:" and "to" strings are translated to a language where these words are longer. For example, this reproduces with Dutch culture which uses the "Pagina's:" and "naar" texts.

To work this around, you can get the Grid panel that hosts the content and increase the Width of one of its ColumnDefinitions.

  private void PrintPreviewControl_Loaded(object sender, RoutedEventArgs e)
  {
      var printPreview = (PrintPreviewControl)sender;
      var rootGrid = printPreview.FindChildByType<Grid>();
      rootGrid.ColumnDefinitions[0].Width = new GridLength(355);
  }

Unplanned
Last Updated: 25 Oct 2024 12:16 by Sasidhar

Add information about the selection in the SelectionChanged event arguments. 

- We need to differentiate from mouse event to keyboard event. But since the EventArgs is empty we are not able to differentiate.

Unplanned
Last Updated: 13 Nov 2024 05:26 by ADMIN

Improve the load time when the ribbon UI is used.