Telerik Forums
UI for WPF Forum
0 answers
104 views

As of 2024 Q2, we will deprecate .NET Framework 4.0, .NET Framework 4.5, and .NET Core 3.1 distributions. This decision is rooted in our dedication to align with Microsoft’s recommended framework versions so that our products leverage the latest advancements in technology, security, and performance.

We are aligning our product with Microsoft’s lowest-supported framework versions for .NET Framework and .NET, respectively. Please refer to the following blog post:

Product Update for Enhanced Performance and Security (telerik.com)

For more information about how to upgrade your project's .NET Framework version, you can check the following MSDN article:

Migration Guide to .NET Framework 4.8, 4.7, and 4.6.2 - .NET Framework | Microsoft Learn


Stenly
Top achievements
Rank 1
 asked on 30 Jan 2024
0 answers
2 views

Hi There,

I am having a strange issue on my WPF application, the text box does not allow adding a space when a space bar is pressed.

I am able to add a space between words on the same text box, but it does not allow me to add space after the last word.

 

Sgcino
Top achievements
Rank 1
 asked on 18 Apr 2024
0 answers
5 views

Dear Telerik Team,

Do we have any multiple selection (Check box) option in Grouped rows?

Reference screen shot attached here.

 

Thanks in Advance 

 

Premkumar
Top achievements
Rank 1
Iron
Iron
 asked on 18 Apr 2024
0 answers
6 views

Hi
I change a grid with a raddocking in order to allow resizing of space between my two controls.
It woks well but there is a border around pane that I don't want because is not nice inside the context (I highlight it in yellow):

Here the piece of xaml:

<t:RadDocking
	Grid.Row="1" Grid.Column="1"
	HasDocumentHost="False"
	BorderThickness="0">		
	<t:RadSplitContainer
		InitialPosition="DockedRight"
		Visibility="{Binding ComandiGrafici.PercentiliGridVisibility,
			Converter={StaticResource BoolToVis}}"
		BorderThickness="0">
		<t:RadPaneGroup>
			<t:RadPane
				BorderThickness="0"
				PaneHeaderVisibility="Collapsed">
				<local:PercentiliControl 		
                                        Margin="0, 0, 5, 0"/>
			</t:RadPane>
		</t:RadPaneGroup>
		</t:RadSplitContainer>
		<t:RadSplitContainer
			InitialPosition="DockedLeft"
			BorderThickness="0">
			<t:RadPaneGroup
				BorderThickness="0">
				<t:RadPane
					PaneHeaderVisibility="Collapsed"
					BorderThickness="0">
					<WpfPlot
						Loaded="WpfPlot_Loaded"
						Background="Azure"												 
						AxesChanged="WpfPlot_AxesChanged" AllowDrop="True"
						MouseMove="WpfPlot_MouseMove"
						MouseDoubleClick="_wpfPlot_MouseDoubleClick"
						Visibility="{Binding IsGraphicView, Converter={StaticResource BoolToVis}}"
						t:RadContextMenu.ContextMenu="{StaticResource PlotContextMenu}"/>
				</t:RadPane>
			</t:RadPaneGroup>
	</t:RadSplitContainer>
</t:RadDocking>

 

Note that by default the border is double, I hide one setting BorderThickness="0" in RadDocking tag.

Can I hide the second border?
Thank you

Luigi

 

Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
 updated question on 18 Apr 2024
0 answers
4 views
The RadToggleSwitchButton has properties for content when the button is checked(CheckedContent) and unchecked(UncheckedContent), but when three state is enabled and the value is set to null, the content is empty. How do I set the content when the RadToggleSwitchButton is in three state mode and the state is set to null?
Johnathan
Top achievements
Rank 1
 asked on 17 Apr 2024
10 answers
159 views

Hi There,
When trying to build a tabular Pivot table report with multiple dimensions and attributes it becomes necessary to have the field names of the Row Labels, above the columns where the data appears. The reason is that it otherwise becomes impossible to know what data each column represents in the report making the PivotGrid useless for simple tabular reports. You can see below an instance of the issue and the equivalent report using Excel Pivot tables.

Attached are screenshots from Telerik PivotGrid(no row headers)  and Excel Pivot tables(with row headers).

Can you help suggest a workaround to add row headers or is it scheduled in future release? Thanks!

Nilesh
Top achievements
Rank 1
Iron
 answered on 17 Apr 2024
1 answer
3 views

I have a wpf radtreeview, now I can use left click to select item,

but i want to the selection behavior to be changed to double click, how could I achieve that?

Martin Ivanov
Telerik team
 answered on 16 Apr 2024
1 answer
6 views

Can you please help me to createing the diagram layout algoritham to set diagram, because we cannot set static position of all nodes.

We want these types of layouts to be in the image.

Martin Ivanov
Telerik team
 answered on 16 Apr 2024
1 answer
11 views
Hi
I'm using RadDocking.LoadLayout to save and restore the positions of docked panels.
My application is localized and every string in xaml is set in this form (for instance...):

Header="{DynamicResource ResourceKey={x:Static r:ResourcesKeys.key}}"
Where r:ResourcesKey.key is an index in the language dictionary selected in the application.

When I change the localization with  an existing xml for layout, the headers of panels are read from the xml and are in the previous language.
Ho can I force to rewrite the strings in the right language (without delete the layout xml file)?

Thank you
Luigi

Martin Ivanov
Telerik team
 answered on 16 Apr 2024
0 answers
5 views

Hi Telerik Team,
I'm using the below telerik version 2023.2.718.45

The default style is extracted through Office2016 theme.

For the RadGridView footers, the below are the styles used.

<Style x:Key="DefaultGridViewFooterRowStyle" TargetType="telerik:GridViewFooterRow">
                <Setter Property="Height" Value="35" />
                <Setter Property="BorderThickness" Value="0" />
            </Style>

            <Style x:Key="DefaultGridViewFooterCellStyle" TargetType="telerik:GridViewFooterCell">
                <Setter Property="Background" Value="#F1F1F1F1" />
                <Setter Property="BorderThickness" Value="0" />
                <Setter Property="HorizontalAlignment" Value="Stretch" />
                <Setter Property="HorizontalContentAlignment" Value="Stretch" />
                <Setter Property="FontWeight" Value="Normal" />
                <Setter Property="FontSize" Value="10" />
                <Setter Property="Padding" Value="0" />
            </Style>


But, from where the vertical lines are coming in the footer (Please refer the attachment).
Also, if I perform Column resizing, then the vertical line is not showing for some time and showing for some other time (Please refer 2nd attachment).
Also, sometimes the border which I used to display the sum in the footer having display issue, means the right border is hiding sometimes when I perform column resizing and sometimes without column resizing the same issue occurs.
It looks like resolution issue.
Please let us know any solution to avoid this line and right border hiding issue. It looks weird.

Premkumar
Top achievements
Rank 1
Iron
Iron
 asked on 16 Apr 2024
Narrow your results
Selected tags
Tags
+? more
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?