Telerik Forums
UI for WinForms Forum
3 answers
170 views

Hello,

 

I am currently creating a new style template based on the Material template (Material.tssp).

I have changed several things like PrimaryFill, Fonts etc. I have also changed the Titlebar color but after one of these changes the minimize, maximize and close icon got replaced by a location, hang-phone and questionmark icon (see this video )

Does anybody have a solution for this?

The altered .tssp-file can be downloaded here

Grtz Patrick Vossen

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 26 Oct 2018
9 answers
283 views

Is it possible add Visual Studio 2012 Blue theme? (exist only light and dark)

Or another idea, in WPF exists Visual Studio 2013 themes (light, blue, dark)

https://docs.telerik.com/devtools/wpf/styling-and-appearance/themes-suite/common-styling-appearance-visualstudio2013-theme

Is it possible add/convert these themes also to WinForms?

Figueroa
Top achievements
Rank 1
 answered on 26 Oct 2018
4 answers
202 views

Good day, I'm struggling to get RadControls within CommandBarHostItems to scale at size 125%.
I've worked through your articles, applied the application manifest and set the relevant property on my main form.

Every other control is scaling as it should, but I can't get a RadCheckbox and RadMulticolumnComboBox to work?

See code below on how I set these controls:

RadCheckBox chkAutoFilter = new RadCheckBox();
chkHostAutoFilter.MinSize = new System.Drawing.Size(80, 20);
chkHostAutoFilter.HostedControl = chkAutoFilter;

RadMultiColumnComboBox cboCustomerID = new RadMultiColumnComboBox();
cboCustomerID.Name = "cboCustomerID";
cmbHostCustomerID.MinSize = new System.Drawing.Size(90, 20);
cmbHostCustomerID.HostedControl = cboCustomerID;

Telerik Version:  2018.1.116.40

Please advise.

Johann
Top achievements
Rank 1
 answered on 25 Oct 2018
8 answers
267 views

I've an image column where sorting is invalid. I've found no info googling for a solution to disabling sort on radvirtualgrid columns.

How do I do that please?

(I've an event handler that prevents sorting on that column programatically, but I don't want to see either the little direction arrows on the column header, or a context menu)

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Oct 2018
6 answers
88 views

Hello,

Is there a way to set UseMnemonic to false for the Breadcrumb?

Setting UseMnemonic to false for the linked treeview seems not be the solution.

 

Grtz Patrick Vossen

Patrick
Top achievements
Rank 1
 answered on 24 Oct 2018
3 answers
423 views

Hello,

in our application we use the RadDock to show some tool windows. The orginal windows are WinForms forms and so we use the following statement to show it as toolwindow:

Form f = new LogForm();
hostWindow = radDockBase.DockControl(f, DockPosition.Right);
hostWindow.DockState = DockState.Floating;
hostWindow.CloseAction = DockWindowCloseAction.Hide;
hostWindow.AllowedDockState = AllowedDockState.All ^ AllowedDockState.TabbedDocument;

The window is displayed as expected (see BeforeClosing.png).

For each tool window we add a menu item with which we can close and open the window with the following code:

...
//hostWindow.DockState = DockState.Hidden;  <-- I've tried that too
hostWindow.Close();
...
...
hostWindow.Show();
...

After showing the window again, the content of the window is no longer displayed (see AfterReShow.png).
How can I re-show the window and display the content?
Thanks for the help
Christoph

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Oct 2018
7 answers
497 views
I'm using a dataview which contains master template and child template. for child row set i have a summary row which contains the totals of Column X. I need to add a summary row to the master template which contains the sum of the children summary rows (sum of sums of column X).
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 24 Oct 2018
1 answer
518 views

Hi guys,

              I facing an issue on page view control for setting the automation id. Actually my RadPageview had more than 10 tabs.

             While testing my application, my winium driver is not  able to perform (PageviewTab)Tab Clicking operation.

            Any idea how to make ?

Dimitar
Telerik team
 answered on 23 Oct 2018
4 answers
221 views

I have run into several issues with the RadGanttView object that I am hoping someone else has run into as well so that they can either share experience to overcome these issues or at least tell me if perhaps these are issues that are being worked on. 

Issue 1: When adding items to the GanttView new objects do not display on the Gantt view until some sort of refresh is forced, for example collapsing and expanding one of the items.

Issue 1 Notes:
I notice this in my own project as well as the Telerik Theme Viewer example under GanttView. When all of the Items are expanded, and a new task is added it will not be displayed until any Item is collapsed and expanded again. (this is noticeable most when there are enough items that there is need to scroll down to work with the desired Item.) I notice that a new Item seems to be loaded off the view-able area of the GanttView near the bottom, but the control will not allow further scrolling downward to get to the newly created item. When I collapse and expand any element, the scroll bar auto resizes, and I am able to scroll down to the newly created item. (Under this particular circumstance I do not seem to experience the same issue with being auto scrolled to the top of the Gantt Chart as explained in more detail below in Issue 2).

Issue 2: When adding Items to the Ganttview the addition of an item causes the GanttView to scroll to the top.

Issue 2 Notes:
I notice in my own project and also the Telerik Theme Viewer example under GanttView, that if I have enough Items in the Gantt chart that if I scroll to the bottom or even about halfway down and add a new Sibling or Child that the GanttView will automatically scroll to the top of the view. I have looked for a way to be able to save the current scroll location then load that position back in after an “add operation,” but do not see a non read-only property that allows me to do this.

Issue 3: When adding the First Child to a root level Item on the GanttView where all of the root level items are collapsed, the item will be added, the GanttView will scroll to the top of the Gantt chart, and then clicking anywhere in the GanttView Graphical element will crash the program (clicking in the GanttView Text Element seems to not cause an immediate crash).

Issue 3 Notes:
To be able to more easily see the project at hand all root level items in the GanttView were collapsed. A new Root level item was added. To that root level item a new child was added. This causes all elements to expand, the GanttView to scroll to the top of the view, and upon clicking in the graphical side of the GanttView (specifically clicking on the scroll bar to scroll back down) the program crashes.
It should be noted that I add these children and root elements to the Gantt chart programmatically rather than using the GanttView right-click context menu inside my project. I seem to be unable to exactly recreate the same events inside the Telerik Theme Viewer Application so far.
Interestingly, when going through the same procedure, but with all of the root elements expanded I do not seem to experience the same issue.

 

Other issues: I have some other issues related specifically to the GanttView object, but I will hold off on asking them for the time being so as not to overwhelm anyone (I hope).  Any information, experience or knowledge of future plans (if these are known, but as yet unaddressed issues) would be greatly appreciated. Thank you in advance for your time and effort. 

 

Yours with gratitude, 

 

Matthew 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 23 Oct 2018
2 answers
121 views

On the search row, there is an options menu. Under the menu section "search in columns", there is a header with the text "Master Template".

Is there a way to change this text to be the dependent on the current grid? I've found I can name the child templates using the caption property, but I haven't found anything for the master template.

Telerik version is 2018.3.1016.40. Application is for windows 10, .NET 6.4.1

William
Top achievements
Rank 1
 answered on 23 Oct 2018
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?