Unplanned
Last Updated: 18 Mar 2024 10:18 by Martin Ivanov

In the Office2019 theme, the RadGridView's ScrollBar elements should have transparent background by design. This is the track's background shown behind the thumb element that allows drag-to-scroll. Currently, the ScrollBars have a gray background.

To work this around, you can define an implicit Style in the App.xaml that targets the GridViewScrollViewer control. Then, set its Background property.

 

<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/System.Windows.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/Telerik.Windows.Controls.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/Telerik.Windows.Controls.Input.xaml"/>
            <ResourceDictionary Source="/Telerik.Windows.Themes.Office2019;component/Themes/Telerik.Windows.Controls.GridView.xaml"/>
        </ResourceDictionary.MergedDictionaries>
        <Style TargetType="telerik:GridViewScrollViewer" BasedOn="{StaticResource GridViewScrollViewerStyle}">
            <Setter Property="Background" Value="Transparent"/>
        </Style>
    </ResourceDictionary>
</Application.Resources>

 

Unplanned
Last Updated: 18 Mar 2024 09:18 by ADMIN
The table preferred width value set to Auto or in percents is ignored and is always exported with fixed value.

Steps to reproduce:
Create a table with two columns in RadRichTextBox.
Set the table preferred width to auto.
Set the table cell preferred width for both columns to 50%.
Export to Docx format.

Observed result: the table has preferred width as fixed value 6.62 inches. The columns have the correct width.
Expected result: the table preferred width to be auto.
Unplanned
Last Updated: 18 Mar 2024 06:09 by Ivan
Make the MoveSelectionCommandParameter class public so one can easily access its parameters. 
In Development
Last Updated: 15 Mar 2024 11:35 by ADMIN

NullReferenceException is thrown if you set the IsChecked property of the RadToggleSwitchButton before the button is added to the visual tree. This happens only when the switch animation is disabled.

To work this around, you can set the AnimationManager.IsAnimationEnabled property of the button to True initially. And then set it back to False on Loaded of the button.

Unplanned
Last Updated: 15 Mar 2024 09:51 by Ben

Add input rules and character count limit to the text box: 

 

1. There is no input mask, although the expected pattern is AARRGGBB.
2. Arbitrary and invalid characters can be input (#, +, %, Z, ...).
3. Invalid input is parsed to FF000000, but there is no indication that the input is wrong.
4. Shorter valid sequences, e.g. AB, are parsed, but to FFAB0000, instead of AB000000, which seems unintuitive.
5. Longer sequences exceeding the pattern can be input, although invalid.
6. Entering longer sequences leads to the expansion of the input box even beyond the bounds of the control 
Unplanned
Last Updated: 15 Mar 2024 09:39 by Keisuke
RichTextBox: Caret is not displayed at the expected position in the FlowNoWrap layout mode.
Unplanned
Last Updated: 14 Mar 2024 15:07 by Ivan
Expose events that are fired when the internal document commands are executed. 
In Development
Last Updated: 14 Mar 2024 13:29 by ADMIN
The last row is allways cut off when you set a custom RowHeight in RadGridView. You cannot scroll far enough, but selecting the last row is still possible using arrow keys.

The issue seems to occur when a `RowHeight` is set in combination with `UseLayoutRounding`.
If you "remove" one of them, the last row appears.


Version of dlls 2024.1.130.70


In Development
Last Updated: 14 Mar 2024 09:14 by ADMIN
The ExportToImage method of the RadDiagram control does not take into account transforms applied to the diagram items.
In Development
Last Updated: 14 Mar 2024 09:11 by ADMIN
Created by: Caesar
Comments: 2
Category: RichTextBox
Type: Bug Report
0
As shown in the attached video.
In Development
Last Updated: 14 Mar 2024 09:08 by ADMIN

When the SelectionMode of RadAutoCompleteBox is changed, the search text is cleared. However, this clears only the Text property of the underlying TextBox element. The SearchText property of the control is not cleared.

To work this around, you can manually set the SearchText after setting the SelectionMode.
this.autoCompleteBox.SelectionMode = AutoCompleteSelectionMode.Multiple;
this.autoCompleteBox.SearchText = null;

In Development
Last Updated: 14 Mar 2024 09:07 by ADMIN
Selecting cells in one direction with the keyboard and then reversing the direction breaks the selection.
Unplanned
Last Updated: 13 Mar 2024 13:07 by Martin Ivanov
Currently, the there are two frames that happen on property changed that cause the blink. On the first frame, the labels are cleared and the cells are drawn. On the next frame, the labels measure/arrange phase catch up with the cells image drawing and the control is rendered again. Because of this when a cell value is changing at a fast rate (in a timer or similar) and redrawing of the cells is required, a blinking of all texts in the control can be observed.
Unplanned
Last Updated: 13 Mar 2024 11:56 by Emin Sadigov
Track change for Insert - Hyperlink is not marked as change properly.
Unplanned
Last Updated: 13 Mar 2024 11:39 by Martin Ivanov

The cell content gets clipped when the width of the previous column changes at runtime. This happens in the Windows11 and Office2019 themes (possibly in others) and only if the clipped cell is position before the right frozen columns area.

To work this around, you can call the Rebind() method of RadGridView, after the column width changes.

Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Currently, the Telerik.Windows.Controls.BooleanToVisibilityConverter cannot work with null values. It throws NullReferenceException. However, its ConvertBack method works with null values. Also, the System.Windows.BooleanToVisibilityConverter support nulls in its Convert method.
When null value is provided the converter should return Visibility.Collapsed.
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Memory leak due to content controls and caret events. 
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)

Wrong XAML files are shipped with the Net Core themes archive. Instead of Docuemnts.xaml and RichTextBoxUI.xaml the RichTextBox.xaml file should be added. 

 

Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)

Steps to reproduce: 

1. Download Telerik_UI_for_WPF_Source_[Version].zip

2. Modify the Release70 configuration to Debug70 in the following script - Build_WPF70_Xamlless.bat

3. Execute the bat file to reproduce the error:

Telerik_UI_for_WPF_Source_[Version]\Core\Controls\Input\Touch\TouchManagerV3\TouchManager.TouchMode.cs(242,9): error CS1519: Invalid token '{' in class, record, struct, or interface member declaration [D:\temp\tic\Telerik_UI_for_WPF_Source_2023_3_1114\Core\Controls\Controls_NetCore_5cmyf5ge_wpftmp.csproj::TargetFramework=net7.0-windows]

 

As I workaround I would suggest editing the NetCoreConfigurations.targets with the following property groups: 

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug70|AnyCPU' ">
    <TargetFrameworks>net7.0-windows</TargetFrameworks>
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <OutputPath>bin\$(Configuration)\</OutputPath>
    <DefineConstants>DEBUG;WPF;NETCORE;CODE_ANALYSIS;WPF45;WPF40</DefineConstants>
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    <WarningsAsErrors />
    <SourceAnalysisTreatErrorsAsWarnings>true</SourceAnalysisTreatErrorsAsWarnings>
    <StyleCopEnabled>false</StyleCopEnabled>
    <TargetFrameworkVersionString>70</TargetFrameworkVersionString>
  </PropertyGroup>

  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug70.NoXaml|AnyCPU' ">
    <TargetFrameworks>net7.0-windows</TargetFrameworks>
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <OutputPath>bin\$(Configuration)\</OutputPath>
    <DefineConstants>DEBUG;WPF;NETCORE;CODE_ANALYSIS;WPF45;WPF40;NOXAML</DefineConstants>
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
    <WarningsAsErrors />
    <SourceAnalysisTreatErrorsAsWarnings>true</SourceAnalysisTreatErrorsAsWarnings>
    <StyleCopEnabled>false</StyleCopEnabled>
    <NoXaml>true</NoXaml>
    <GenerateImplicitStyles>true</GenerateImplicitStyles>
    <TargetFrameworkVersionString>70</TargetFrameworkVersionString>
  </PropertyGroup> 

The file can be found here: Telerik_UI_for_WPF_Source_[Version]\Build\Imports\NetCoreConfigurations.targets.

Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
When you run the Demo program and select the code of some sample the C# code is shown, but the VB code is missing.
1 2 3 4 5 6