Telerik Forums
UI for WinForms Forum
1 answer
129 views
hi !
1. exists any way to have a editable tooltip in treeview ?
2.
        private void ToolTipNeeded(object sender, ToolTipTextNeededEventArgs e) 
        { 
            ... 
                    TreeNodeUI tree = (TreeNodeUI)sender; 
                    int level = tree.AssociatedTreeNode.Level; 
 
                    if (level == 0) 
                    { 
                        OnRaiseCustomEvent(new TooltipEventArgs(e)); 
                    } 
   } 
 
        private void OnRaiseCustomEvent(TooltipEventArgs args) 
        { 
            EventHandler<TooltipEventArgs> handler = RaiseCustomEvent
            if (handler != null) 
            { 
                //by the way  
                args.ToolTipText = new RadTextBox(); 
                args.ToolTipText.Text = "test";  
                handler(this, args); 
            } 
        } 
        private void HandleToolTipEvent(object sender, TooltipEventArgs e) 
        { 
            e.ToolTipText.Text = "444";  
        } 
 public class TooltipEventArgs : ToolTipTextNeededEventArgs 
    { 
        private RadTextBox txtTextBox; 
 
        public TooltipEventArgs(ToolTipTextNeededEventArgs args) 
        {            
            txtTextBox = new RadTextBox(); 
            txtTextBox.BackColor = Color.Transparent; 
            txtTextBox.ForeColor = Color.Black; 
            txtTextBox.Enabled = true
            txtTextBox.Text = "test"
            args.ToolTipText = txtTextBox.Text ; 
         } 
 

That code pretends show a textbox instead of string tooltip (but doesn't work), what I can do , to be able for view the textbox ?
:\
thanks  in advantage :]
Martin Vasilev
Telerik team
 answered on 15 Jan 2010
9 answers
1.0K+ views
Does Telerik RadGrid (Win Form) have any auto-refresh property?
Veselin Vasilev
Telerik team
 answered on 15 Jan 2010
14 answers
300 views
It doesn't appear the DateTimePicker allows abitrarily entering text into it, but rather, it only functions as a picker.  Any way that in the future it could include functionality to arbitrarily enter a date?  Reasoning would be that if you are trying to pick a date WAY in the past, there is no easy way to get to it... you have to scroll through the months at maximum 6 at a time (3 before the current month, 3 after) which would take forever. 

Being able to enter arbitrary text as well as having the "quick month" selector let you also quickly select a different year would help solve that problem.  In other words, it should work similar to the ASP.NET RadCalendar (DatePicker mode).
Boyko Markov
Telerik team
 answered on 15 Jan 2010
1 answer
169 views
I have a number of document windows in a tab strip. Is there a way to allow the user to drag that document window out of the tab strip and into an independent window? Thanks.

-John Baima

Nikolay
Telerik team
 answered on 15 Jan 2010
1 answer
175 views
  I am using Rad dock control & I have added three dock toolwindows on that i.e Calendar, Selection Sets, Toolwindow3. When I autohide all the three windows I can see those at right side of the current form.My problem is , while opening toolwindow after mouse hover on it , it takes size of the toolwindow which I opened earlier.I want to open the toolwindow in speciafic width which covers whole area of the control which is on the toolwindow. Such as If I open Selection sets toolwindow by mouse hover on that & pin it , I can see it in opened mode. but if I resize it & immedeiately after if I open the Calendar toolwindow by mouse hover on it , it takes the resized size of Selection sets toolwindow.What I want is I want to open all those toolwindow in there specific sizes & it should cover the whole area of controls whatever the toolwindow holds.For that if I set specific width it do not allow me to resize them ,I can resize them also.
Please find an attachment of the sample example , In that I have set width to all the toolwindow on form load to avoide that it takes the resized size of earlier toolwindow.I am looking for the solution which allow me to resize the toolwindow & also dock toolwindows should not break width of it so that I can see controls under them fully not in squizzed format.Also one more point I cant resize them when those are in pinned mode , but after mouse hover on those & befoure pinning it I can size them to whatever.
for example
If I reduce the size of Selection set toolwindow by dragging it & pin it and then if I open calendar toolwindow by mouse hovering on it, it takes reduced size of Selection set so I see calendar half part i.e upto thursday or whatever the width.


Please refer ticket id 242089 -- Dock Tool Windows for the attachments. I can't attach the application's zip file as allowed extensions are different.
For above question which I had posted earlier also (refer ticket id 242089), you did get back to me i.e you were able to reproduce it and going to address this issue in the version  q3 2009. I am facing the same problems in q3 2009 version too.

Can this issue be fixed asap? It's bit urgent.
Nikolay
Telerik team
 answered on 15 Jan 2010
1 answer
96 views
Hi,

Here's a problem I found:

1-Create a RadForm and set TopMost = true
2-Add a RadDock and add a Tool Window docked (anywhere)

When this form is run, if you unpin the tool window and then hover on it, the tool window is not shown. It's actually behind the form. You can see this easily by sizing the raddock to be bigger than the form. When you hover, you will see the tool window appear behind the form.
Nikolay
Telerik team
 answered on 15 Jan 2010
1 answer
940 views
I Want to change the "No Data To Display" message shown in the rad gridview. how can i do that?

Thanks
Svett
Telerik team
 answered on 15 Jan 2010
7 answers
295 views
Hi,
I am using a RadMaskedEditBox control for win forms. The main task is to create a currency textbox and I am almost there. The problem is that when the user types a period as a decimal delimeter the control is not positioning the cursor after the period. So, in order to add this functionality I would need a KeyPress event fired on user's entry.

Please let me know how I can activate KeyPress ,KeyDown or KeyUp events or if you have already the currency text box with this functionality.

Appreciate your help.

Sasha
Nikolay
Telerik team
 answered on 15 Jan 2010
3 answers
262 views
Hi

If I attach a ContextMenuStrip to a RadTextBox is not showing, but if I on the same form add the same ContextMenuStrip to a normal Textbox is shows. What have I done wrong ?

Best Regards
Kim Johansen
Nikolay
Telerik team
 answered on 14 Jan 2010
1 answer
171 views
I have created a RadImageButtonElement inside a RadToolStripItem and an ImageList is assigned to the RadToolStrip.
I need to change the image size (Large,Small,Medium)  in the RadImageButtonElement.I have assigned SmallImageList property for the RadToolStrip control.When will the images in SmallImageList will be assigned to the RadImageButtonElement?

In Listview control we have option to view Large Icon,Small Icon by assigning LargeImageList and SmallImageList values.Is there is any option in RadToolStrip to view Large and Small Images similar to ListViewControl?

Thanks,
Shirley
Martin Vasilev
Telerik team
 answered on 14 Jan 2010
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
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
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?