This theme is available in WPF suite. We have the Light and Dark variations as well.
I have a winforms controls product with specific license of 2017.1.221.40 and I need to know what themes are available for this specific version and how to implement it, since I need to know if I can apply the them "VisualStudio2012DarkTheme" and how do it.
Poor support for custom DPI scaling in Windows 7 - Windows 10. There no null checking, and there is dirty hacks: CASE 1: RadPageViewElement public override void DpiScaleChanged(SizeF scaleFactor) { base.DpiScaleChanged(scaleFactor); if (this.Owner != null && this.Owner.Pages.Count > 1) { this.Owner.SuspendEvents(); if (this.Owner.SelectedPage == this.Owner.Pages[0]) { this.Owner.SelectedPage = this.Owner.Pages[1]; // NO NULL CHECKING this.Owner.SelectedPage = this.Owner.Pages[0]; // DIRTY HACK: users can have their own processing OnSelectedPage, which is unexpected here! } else { RadPageViewPage page = this.Owner.SelectedPage; this.Owner.SelectedPage = this.Owner.Pages[0]; this.Owner.SelectedPage = page; } CASE 2: public partial class RadForm1 : Telerik.WinControls.UI.RadForm { public RadForm1() { InitializeComponent(); radWizard1.Pages.Add(new WizardPage()); // when user has 100% Dpi, this code works normally. But if user has custom scale DPI (e.g. 101%), user received System.NullReferenceException: 'Object reference not set to an instance of an object.' (because because again there is no verification for ContentArea = null)... } } Please improve the work with custom DPI scaling!
I'd like to represent, update and delete WinForms Scheduler events in a Kendo MVC Web application and visa versa. Some kind of data converter would be appreciated.
Implement a facility to convert a RadDocument to a RadPrintDocument (or something that can be handed to a RadPrintPreview) to avoid having to load up a RadRichTextEditor just to print a code-generated document.
Do you have a version which can support Microsoft .NET Framework 2.0? I run a sample application TelerikUIforWinFormsDemoAppsHub\BugTracker asking for Microsoft .NET Framework 4.0. We had some PC still running Microsoft .NET Framework 2.0.
I have literally for weeks now, tried to find a single theme that works properly with High Dpi scaling, including the new material themes. None of them work, I mean not even to the point that, it's just a few quirks. I can't deploy applications, without extensive code to modify the way the controls look. My request, is take something like material (preferably with a professional color scheme), or telerik touch, make the need adjustments to make them HiDpi, and then EXTENSIVELY test it, to insure it works.
Bitdefender moved a threat to quarantine. File name: c:\program files (x86)\progress\telerik ui for winforms r3 2017\examples\medicalapp\medicalappcs\bin\medicalappcs.exe. It is recommended that you run a System Scan to make sure your system is clean.
how to add like dislike button column for each row in radgrid
Add the ability to have multiple columns in a TreeView
Our customers are located in Russian and CIS. So, the most common language is Russian. Telerik WinForms controls doesn't provide official Russian localization. Yeah, we can translate it, but it's too hard to contact with translators and support them in translation questions. And, of course, it takes money resources. We'd rather pay more monay for Telerik WinForms UI with official Russian localization than we spend money to translators. Thanks!
add more functions in rad diagram like labels for links, conditional formatting of links and nodes like shape size, color, thickness etc also try to add some analysis alogs like sna like degree, betweenness, closeness shortest path etc. also a facility to use png icons 2d and 3d for more better representations. Also try to add more chart layout like tree, organic, organizational, circular, and time line to represent sequence of events related to nodes.
Why the telerik more and more ugly now? Look at the DevExpress, very beautiful and it has so many skin for change. I hope telerik must be paid great attention for UI. win8 it's a good example. ugly! now you also too. especially the Demo. just like a ugly collections!
Setup: Had radchartview with showtrackball = false, and a form checkbox to enable disable the trackball So startup showtrackball = false, the start appl, all ok, mouse over chart, all ok, then use checkbox to set showtrackball=true, then mouse over chart all ok, then use checkbox to set showtrackball = false (again) then mouse over - and get this crash! Exception System.NullReferenceException was unhandled HResult=-2147467261 Message=Object reference not set to an instance of an object. Source=Telerik.WinControls.ChartView StackTrace: at Telerik.WinControls.UI.ChartTrackballController.GetPointText(DataPoint point) at Telerik.WinControls.UI.ChartTrackballController.GetTrackballText(List`1 points) at Telerik.WinControls.UI.ChartTrackballController.MoveTrackball(PointF location) at Telerik.WinControls.UI.ChartTrackballController.OnMouseMove(MouseEventArgs e) at Telerik.WinControls.UI.ChartWrapper.WrapperCallOnMouseMove(MouseEventArgs e) at Telerik.WinControls.UI.RadChartElement.OnMouseMove(MouseEventArgs e) at Telerik.WinControls.RadElement.DoMouseMove(MouseEventArgs e) at Telerik.WinControls.ComponentInputBehavior.SelectElementOnMouseOver(MouseEventArgs e) at Telerik.WinControls.ComponentInputBehavior.OnMouseMove(MouseEventArgs e) at Telerik.WinControls.RadControl.OnMouseMove(MouseEventArgs e) at System.Windows.Forms.Control.WmMouseMove(Message& m) at System.Windows.Forms.Control.WndProc(Message& m) at System.Windows.Forms.ScrollableControl.WndProc(Message& m) at Telerik.WinControls.RadControl.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg) at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData) at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.Run(Form mainForm) at Elo.Rpv.WinForms.Program.Main(String[] args) in z:\00 ELECTROLOGIC.RPV\30 SW\02 Git\Rail Profile Viewer\Rail Profile Viewer 1\Elo.Rpv\Elo.Rpv.WinForms\Program.cs:line 22 at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args) at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args) at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly() at System.Threading.ThreadHelper.ThreadStart_Context(Object state) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ThreadHelper.ThreadStart() InnerException:
see attached
- Image quality in PDF is very low. - page 22 : \VS Projects\... not found on my computer in "C:\Program Files (x86)\Telerik\". Precise root path. - page 24 part 7 : MiscellaneousTheme. Seems this theme has been removed - page 24 part 11: RadSplitButton wrong name : spSizeMode instead sbSizeMode - Page 25 part 13: EventHandler "BorderStyleClick" unclear. should precise. (I'll complete other pages after I read it ;p)
The context menu does not provide which control has been clicked. Workaround: Point p; Control currentControl; void radContextMenu1_DropDownOpened(object sender, EventArgs e) { p = ((RadContextMenu)sender).DropDown.Location; TraverseControls(this); } public void TraverseControls(Control ctrl) { foreach (Control control in ctrl.Controls) { if (control == ctrl.GetChildAtPoint(ctrl.PointToClient(p)) && control.Controls.Count > 0) { currentControl = control; TraverseControls(control); } else if (control == ctrl.GetChildAtPoint(ctrl.PointToClient(p))) { currentControl = control; } } }
Telerik winforms demo application "bugtracker" issue: reproduction: 1. drag the "bugs" window to touch the upper middle docking guide icon and without releasing the mouse button drag it further Effect: please observe that the remainder of the "bugs window" will not be refreshed, you can draw with this window The same issue can be also observed in the demo hub: drag > Tabstrip properties demo application and also in the DragDropService demo application.