Telerik Forums
UI for WinForms Forum
1 answer
131 views
I have a form using the radRibbonBar and it works fine but I have one annoying problem. In order to make the form look right I need to hide the blue title bar on the form - this means setting the text property to nothing and turning off the control box. The form looks good but the button associated with it that appears in the taskbar has no text in it. I've set the text property of the ribbonbar but this isn't reflected in the button.

Is there a way to set the button text independently of the form?

I've tried setting the text property after the form has loaded but this made no difference.

Thanks for any suggestions,
Martin.
Peter
Telerik team
 answered on 15 Jul 2008
2 answers
167 views
Hello,

I need a help,please. I have some RadComboBoxElements in my RadGridView in sense of previously posted ProgressBarInGrid project. And I have to AddHandler of RadComboBox.DropDownOpened/Closed events, but the RadComboBoxElement has not this events like the normal RadComboBox does. But other RadComboBox events such as SelectedIndexChanged are included and work well. If there is a ellegant way(Because these elements are DropDownList i could handle click_event and check if isdroppeddown but this part solution does not handle if someone open the list and then close it by clicking somewhere on form ) of Handling these events, please post it. Thanks.
Daniel
Top achievements
Rank 1
 answered on 15 Jul 2008
3 answers
135 views

Hey guys,

Someone had asked about showing a form in a Carousel or Rotator - don't remember which. Anyway, that got me thinking...hmmmm....though you may not be able to show an entire form in those controls, you can display a RadPanel in those controls. So then it occurred to me that you could create a RadPanel on a different form, then populate the Carousel or Rotator with that panel. This allows you to put the entire contents of the RadPanel from Form2 on Form1.

Here's what I mean....

Consider this:
- Create two forms - Form1 and Form2
- On Form1, add a RadRotator and a button to change rotator pages (button click, radRotator1.Next();)
- On Form2, add two RadPanels and some RadButtons or other rad controls on each panel
- Back on Form1, create these two methods:

private RadPanel GetPanel(Form form, string panelName)
{
  RadPanel panel = (RadPanel)form.Controls[panelName];
  if (panel == null)
  {
    panel = new RadPanel();
    panel.Text = "UNKNOWN PANEL: " + panelName;
  }

  return panel;
}

private void PopulateRotator()
{
  //create instance of Form2
  Form2 form2 = new Form2();

  //get radPanel1 from Form2
  Telerik.WinControls.UI.RadPanel panel = this.GetPanel(form2, "radPanel1");
  radRotator1.RotatorElement.Items.Add(new RadHostItem(panel));

  //get radPanel2 from Form2
  panel = this.GetPanel(form2, "radPanel2");
  //add the second panel to the rotator
  radRotator1.RotatorElement.Items.Add(new RadHostItem(panel));

  radRotator1.OpacityAnimation = true;
  radRotator1.Next();
}
       
       
- Finally, add the Form_Load event in Form1 and call the PopulateRotator() method.

DISCLAIMER: Just an idea. You'll need to add error handling and stuff...and eh...did I mention this was only an idea?!!!!!  :-)

Mike
Telerik team
 answered on 14 Jul 2008
3 answers
176 views
In many applications now, if you click the upper left corner of a grid/table, it will select the entire table.  Is this possible in the GridView?
Martin Vasilev
Telerik team
 answered on 14 Jul 2008
3 answers
427 views
Hello,

We have a lot of controls that don't fit on one screen. Instead of using tabs I am thinking about purchasing the Rotator control. However, I have a few questions.

Is it possible to put panels with controls on the Rotator and then rotate from one panel to another ?

Is it possible to programmatically do the rotating, without using a timer, so the user has full control ?

Many thanks.
Martin Vasilev
Telerik team
 answered on 14 Jul 2008
4 answers
120 views
I have seen a few posts on this but nothing solid.  I would like to create a UI in my Winforms app that resembles the Xbox 360 Dashboard blades... Somewhat a left to right panelbar.

Is there a way to use the control in this fashion?  If not, does anyone have any pointers on where to start on creating something like this (I do have the source code for the controls)...

Thanks in advance,

- Adam
Boyko Markov
Telerik team
 answered on 14 Jul 2008
3 answers
452 views
Is there any way to automatically scroll items?  I see the AutoScroll property but when I set it to true it doesn't seem to do anything.


Mike
Telerik team
 answered on 14 Jul 2008
1 answer
157 views

Hello,
I would like to use the RadGridview in a similar way as the PropertyGrid, using Reflections.
This will require me to have a column with a lot of different types (string, Datetime, TypeConverter etc.), is it possible to give each cell a unique editor?

Thanks,

Joel

Nikolay
Telerik team
 answered on 14 Jul 2008
1 answer
192 views
Hi,

I seem to be having an issue with the maximize fullscreen of a RadForm and dual monitors.

I have two monitors with the resolutions of 1050x1680 and 1280x1024.

When I set the form to maximized on the first monitor it is fine. But when I try to maximize the RadForm on the second monitor it will stretch across both monitors and not draw the controls on the form correctly.

I have to right click on the task bar and select restore to get the window back. But even then the controls are not redrawn. Only after I resize the form by the grip bar do the controls repaint.

Is this a known issue?

On a different subject is there a way to search other peoples support tickets?
I generally use the forums to search for the issue I am having and if I can't find anything in the forums then I will post on the forum and may send a support ticket too if I need an urgent solution.

But most of the time I think I may have posted the same query as someone else sending a support ticket. If there was a way to search a knowledge base of support tickets that have been resolved it may reduce the amount of support tickets you need to answer.

Thank you

Adrian
Angel
Telerik team
 answered on 14 Jul 2008
1 answer
190 views
Hello Telerik people.  I'm wondering if you are planning to create a BubbleBar control that will appear in the toolbox. I think this is a great feature and really adds a lot of POP to an application. 

If so, then let me go a step further and ask if you have a standard set of BubbleBar icons such as Open, Save, Delete, Search, Print, Page Left, Page Right, Page Up, Page Down, Configuration (gears), Help, etc..

..okay, the icons may be asking a bit much but I would really, really, really like to see the BubbleBar control implemented.

What do you think?

Nikolay
Telerik team
 answered on 14 Jul 2008
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
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?