Hi,
i try to save and load minimized ToolWindows. This works, but the original size gets lost.
Reproduce: Minimize ToolWindow, Save, Load, Restore -> wrong size
I atteched a simple sample where you can push the buttons from 1 to 4 to reproduce it. Pressing button 1 and 4 back and forth works as expected.
In the produced XML i see, that FloatingWidth and FloatingHeight is reset to some "strange" values (160 and 28) after minimize.
When i restore the Window after Load it gets a size of 1440x879
I also dont know how i can sneak in this process to "correct" the values or save some custom/attached ones ...
regards marco
What is the best way to reference telerik controls in a project?
I'm a new dev to my team, and I'm seeing telerik controls being referenced in Dependencies via Telerik.UI.for.Wpf.60.xaml in a folder that is under the users directory.
My problem relates to this being a dependency in a team members Windows Users folder (which I don't have) as well, after installing telerik controls myself and creating a new project from the telerik templates, I have a Telerik.UI.for.Wpf.70.xaml folder (not the 70 instead of 60).
First, what is the best way to reference telerik controls in a shared solution? And second, how do I get the code to compile and run?
Thank you any advice you can offer.
If I Set the ChartPanAndZoomBehavior to "Both", I can zoom a both within the same ratio or zoom one axis on its scrollbar.
How can I lock the two Axis to the same display ratio? (Same value/pixel ratio , I have the same unit meter on both axis), and allow the user zoom only together with two axis, disable the func of zoom single axis.
Hello,
we have old code for generate label with barcode Code39
var barcodeBox = new RadBarcode39
{
Text = "2015-19541",
RenderChecksum = false,
ShowChecksum = false,
ShowText = false,
Width = 192,
HorizontalAlignment = HorizontalAlignment.Center,
VerticalAlignment = VerticalAlignment.Stretch,
Margin = new Thickness(5, 0, 5, 0),
};
and have result https://ibb.co/3hgJHCw
after upgrade to new control with code
var barcodeBox = new RadBarcode
{
Value = "2015-19541",
Width = 192,
HorizontalAlignment = HorizontalAlignment.Center,
VerticalAlignment = VerticalAlignment.Stretch,
Margin = new Thickness(5, 0, 5, 0),
Symbology = new Code39()
{
AutoChecksum = false,
ShowText = false,
SizingMode = SizingMode.Stretch
}
};
we have result https://ibb.co/k8hPdLp
Old barcode we can scan, but new barcode we cannot scan
I was reading this article here and it skips the process of how to add a Telerik RadWindow?
There doesn't actually seem to be an option to add a Telerik WPF RadWindow, only the default Microsoft WPF window.
Documentation just says "Declare" ... so I'm assuming we're supposed to modify a Microsoft template for the XAML?
This is VS 2022 17.5 using Telerik UI WPF 2023.1.117.
Rob.
I've used RadGrid and inside that I have one listview with expander control. It is working fine and Expander also expanding and collapsing fine.
But only one issue I have is, when I expanded the Expander and try to scroll down the RadGrid, Expander collapsing every time, it is not retaining it's previous expand state.
I could overcome this by disabling the Virtualization on RadGrid but in that case RadGrid taking long time to load/render.
Any help would be appreciated.
Thanks,
Hi,
let's take a TextBlock as an example. What's the correct syntax to set the foreground or background color from code behind, using the resources for the Windows 11 palette for instance ?
Also if using it this way, would the color automatically switch to the correct theme variation (light to dark, dark to light) ?
Thank you for your help
Hi,
Would it be possible to have an editable AutoCompleteBox TextBox Part to mimic the RadWatermarkTextBox with floating Label?