Telerik Forums
UI for WinForms Forum
6 answers
364 views
Hello,

I want my Splash Screen appears like it's opacity value should be increased from 0 to 100. is there any way to do it with AnimationEngine Class or with AnimationForm ? Or you know another way do it ?

Thanks
Nick
Telerik team
 answered on 09 Mar 2010
12 answers
368 views
Hello,
Is there a way to save off the RecurrenceRule and then easily load it back in during a future load?

I save the rule to a string variable in:

void Appointments_CollectionChanged(object sender, Telerik.WinControls.Data.NotifyCollectionChangedEventArgs e)        
        {
string sRule;
sRule = ev.RecurrenceRule.ToString();
}

When I am manually creating appointments, 

Appointment appointment = null;
                appointment = new Appointment(start, end, summary, description, location);


How can I insert the saved RecurrenceRule into the appointment?

appointment.RecurrenceRule.Equals(sRule);     //does not work


Thanks
Dobry Zranchev
Telerik team
 answered on 09 Mar 2010
11 answers
424 views

We've had a request to add a close button to each tab in our MDI docking manager rather than use the TdiCloseButton on the far right of the tabstrip.  This is similar to Internet Explorer and Firefox's tabbed interface.  This is on Q2 2008 SP1.

I've been able to get 99% of the way there but have one nagging little issue I hope you can help with.  Whenever I am creating a new MDI child, I am creating a new RadButtonElement via:

 

private

 

static Telerik.WinControls.UI.RadButtonElement NewButton()

 

{

Telerik.WinControls.UI.

 

RadButtonElement ret = new Telerik.WinControls.UI.RadButtonElement();

 

(ret.Children[

 

0] as Telerik.WinControls.Primitives.FillPrimitive).BackColor = System.Drawing.Color.Transparent;

 

(ret.Children[

 

0] as Telerik.WinControls.Primitives.FillPrimitive).BackColor2 = System.Drawing.Color.Transparent;

 

(ret.Children[

 

0] as Telerik.WinControls.Primitives.FillPrimitive).BackColor3 = System.Drawing.Color.Transparent;

 

(ret.Children[

 

2] as Telerik.WinControls.Primitives.BorderPrimitive).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;

 

ret.MaxSize =

 

new System.Drawing.Size(16,16);

 

ret.Text =

 

"X";

 

ret.ForeColor = System.Drawing.

 

Color.Red;

 

ret.DisplayStyle = Telerik.WinControls.

 

DisplayStyle.Text;

 

ret.Alignment = System.Drawing.

 

ContentAlignment.MiddleRight;

 

 

 

return ret;

 

}

 

 

Then, I add a click handler and increase the ImageTextLayoutPanel's margin to make room for my button and finally add the buttonElement to the children:

 

Telerik.WinControls.UI.

 

TabItem tab = pane.DockableTab as Telerik.WinControls.UI.TabItem;

 

Telerik.WinControls.Layouts.

 

ImageAndTextLayoutPanel layout = tab.Children[2] as Telerik.WinControls.Layouts.ImageAndTextLayoutPanel;

 

layout.Margin =

 

new Padding(0, 0, 20, 0);

 

Telerik.WinControls.UI.

 

RadButtonElement button = NewButton();

 

button.Tag = pane;

button.Click +=

 

new EventHandler(tab_Close);

 

button.MouseEnter +=

 

new EventHandler(closeButton_MouseEnter);

 

button.MouseLeave +=

 

new EventHandler(closeButton_MouseLeave);

 

tab.Children.Add(button);

 

 

What I am seeing whenever I add the button element to the tab is the border on the left of the tab is not painted.  I've played around with a lot of margin/padding and layout settings but can't seem to get the border to show up correctly.  Any suggestions?

Thanks in advance!

Martin Vasilev
Telerik team
 answered on 09 Mar 2010
3 answers
171 views
I'm currently evaluating the winforms components for possible use in one of our development projects.
I have been using the infragistics components for about 6 years but we have decided to evaluate other component packages, and I am trying to approach the evaluation in an open minded manner making a list of pro's and con's for each component set weighted by our requirements and their priority.

I've created a basic hierarchical grid, but have been surprised at the number of steps in it's creation. The infragistics grid allows you to pass a dataset with relationships between tables to the grid and it automatically creates the nested grids. I don't see this as an issue though, just an inconvenience.
What I'm currently trying to do is remove the plus from the parent row if no child data is present. Thus stopping the user from having to guess if data is there, or by clicking each individual row. Expanding all rows is definitely not an option due to the amount of data being displayed. This functionality is achieved with a single property in Infragistics but I don't seem to be able to find a similar property in the Telerik grid. Could you please let me know if this is something that can be done, it may only sound like a minor issue but it's really import for our software.

I'm also quite shocked that printing isn't available from the grid, I'd have classed this as essential functionality. Asking users to export to excel and then print the data is not a viable option. I know people were asking about the timescales for this in December, but can you let me know if it is going to appear in the next few months?

Thanks!
Vassil Petev
Telerik team
 answered on 09 Mar 2010
1 answer
146 views
how to increase the MinSize of GridViewCheckBoxColumn. I want to increase the size of GridViewCheckBoxColumn i.e. Print in the attached file
Svett
Telerik team
 answered on 09 Mar 2010
4 answers
182 views
Hopefully this is an easy question. In my gridview, I have a combobox column. Though I have the width of the box wide enough to show an item when selected, when the user selects to change the value in the column, the drop downlist is extremely narrow. How do I correct this? I haven't found an option for the column to do this yet.

Susan
Jack
Telerik team
 answered on 09 Mar 2010
1 answer
144 views
I was trying your MultiColumnSorting function.

In your documentation : http://www.telerik.com/help/winforms/grid_sorting-properties.html

It says to do : radGridView1.MasterGridViewTemplate.AllowMultiColumnSorting = true;

However, that property doesn't seem to exist. Instead, I found : radGridView1.MasterGridViewTemplate.SortExpressions.AllowMultiColumnSorting = true;

I have RadControls for WinForms Q3 2009 SP1.

Nikolay
Telerik team
 answered on 08 Mar 2010
4 answers
300 views
Trying to have a RadImageButton open a new form in a dock (Full mode not left/right/top/bottom)

    Private Sub RadImageButtonElement1_Click(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles RadImageButtonElement1.Click  
        Form1.Close()  
        Me.RadDock1.DockControl(Form1, DockPosition.Fill)  
        Form1.Show()  
    End Sub 

If I change it to .Left it will work fine, but I want it to be Fill.  Also how do I check to see if the form/window is open so it doesnt keep openiing the window like the above code does.
Nikolay
Telerik team
 answered on 08 Mar 2010
1 answer
114 views
After manually adding the WinForm controls to the toolbox, they are not showing up as selectable from the toolbox when i create a WinForm app.  They are "deactivated."  Is there a compatibility issue w/ the WinForm controls and the VS 2010 RC release?
Peter
Telerik team
 answered on 08 Mar 2010
2 answers
181 views
Hi Telerik team,
Can RadProgressBar work with store procedure?How can I?
Regards,
Amnad
Amnad Lueaipang
Top achievements
Rank 1
 answered on 08 Mar 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?