Telerik Forums
UI for WinForms Forum
2 answers
341 views
As a test, I have created a new custom theme by importing the stock themes from telerik and giving it a new theme name. I have also modified the treeview styles as part of the new theme package. I have tried creating a theme dll as suggested per Telerik documentation but the new theme does not appear in any of the themename drop downs in the property browser. I have also tried the theme manager and embedding the xml files. As I said the only control I modified was the treeview control using Visual Style Builder and everything looks good in the preview pane with the new look and feel - both treeview style and form style. I have saved as both a package and individual xml files and tried both compiling a package dll and embedding the xml files in the project. To no avail, I cannot seem to get this working - the new custom theme does not get applied even typing in the themename for the treeview - I did get the custom theme to stick once or twice in design mode but never in run time mode, not even setting the themes in the form load event. And when I got the theme to stick in design mode, the form style and treeview style were no where near what I saved from VSB - it's like some of the styles/properties etc might be missing as my first thought. I know the the files build action are set to embedded resource and I know the resource name is set right (default namespace.folder path.file.ext).

Any help or thoughts would be appreciated.
Dimitar
Telerik team
 answered on 27 Feb 2014
1 answer
118 views
I have a requirement to add some custom menus. They want the name of the label at the top, three or four items showing and an arrow below to show any additional items. There is a picture attached. If  this is possible, what control should I use and how would I go about creating it?.
Thank you
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 27 Feb 2014
5 answers
302 views
Hello Telerik

I have a question about the customizing the filter popup of the RadGridView.

The RadGridView is displaying a read-only list of document which have a type (integer), a name (string), a date (datetime) and a filepath (string). There is also an Enum which define the legal value for the document type (and store a string description). I use CellFormating event to convert the Integer value of the document type to the corresponding string description.

How could I change the Nodes in the Treeview of the Excel-like filtering popup to display the string description of the value ? (we should keep the integer value for the filterdescriptor of course)

The second one is a little bonus for me

Is it possible to build the treeview from the Enum instead of the default behavior ? (Having a node for each value in the enum and not only the value currently in the datasource of the gridview. Theses extra nodes could be displayed but greyed out).

Thanks for reading.

Marco Guignard
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 27 Feb 2014
1 answer
173 views
Hello,

I have two items that I need to get resolved.

1. Is there a way to hide the grips that appear on either side of the appointment which are used to drag the appointment item (see image).
2. Is there a way to customize the Previous Appointment or Next Appointment text in a tab that appears on the left and right side of the scheduler (see attached image).

Thank you.

Chom
Ralitsa
Telerik team
 answered on 27 Feb 2014
1 answer
120 views
I use PivotGrid control bonded with RadChartView, Now i can export the data from PivotGrid to excel sheet but i need to ask if i can add the chart also in the exported excel sheet.
Also if i can export the Data to other format like pdf for example.

Thanks for you Support
Dimitar
Telerik team
 answered on 27 Feb 2014
6 answers
621 views

 

Dear All
my application save file after scanning in PDF format and in path \\172.30.210.101\NewHdPic\. when I use the pdf viewer and set load function (
Form1.LoadDocument(\\172.30.210.101\NewHdPic\23720131118.pdf) pdf viewer  show progress bare then Wight page that is all. no file(23720131118.pdf) load
thanks
rami

Stefan
Telerik team
 answered on 27 Feb 2014
4 answers
187 views
I want to Create an Windows Application using c# inspired by Windows 8 Metro Style or Panorama. I want to know the code of Slide Transition of Forms.
Marvin
Top achievements
Rank 1
 answered on 27 Feb 2014
2 answers
222 views
Trouble displaying bitmap BLOBs in DataGridViewImageColumn...

1) In Design View I created a radGridView.

2) I set the datasource to a EmployeeBindingSource that binds to a Employee SQL table that contains a BLOB field containing normal everyday employee photograph bitmaps.

3) The radGridView auto generated the columns and one of the columns is a DataGridViewImageColumn bound to my BLOB field.

4) When I run the application, I see all the fields displayed EXCEPT the fields in the DataGridViewImageColumn and I have no idea why.

From the DataGridViewImageColumn Telerik Documentation: "Supported image formats are those supported by the Image class of .net framework."
http://www.telerik.com/help/winforms/gridview-columns-gridviewimagecolumn.html
The .net Image Class does support my bitmaps because I use the image class to store the bytes in the blob field in the first place.

Any Ideas?
Will
Top achievements
Rank 1
 answered on 26 Feb 2014
1 answer
136 views
I have a RADListControl which requires scrolling in order to see all the items.  After the control is Initialized, I populate it and set the initial selection.  If that selection is beyond the initial visible range of the list, it is selected, but the list is not scrolled to make it visible.  (e.g., if I set SelectedIndex of the control with a list of 100 items to 50, item 50 is selected after the initial draw, but only items 0 through 20 are shown if the control is only tall enough to show 20 items.)

Subsequent changes to the SelectedINdex work as expected - i.e., if I change the selection no an item that id beyond the current visible range of the list, then the list will scroll enough to make it visible.

Is there a way to cause the initial selection to be displayed?  Sample code below.

namespace ListBoxScrollTest
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();

      for (int i = 0; i < 101; i++)
      {
        radListControl1.Items.Add(i.ToString());
      }

      numericUpDown1.Minimum = 0;
      numericUpDown1.Maximum = listBox1.Items.Count - 1;
      numericUpDown1.Value = (int)(listBox1.Items.Count/2);

      int init = (int)(numericUpDown1.Value);
      radListControl1.SelectedIndex = init;
    }

    private void numericUpDown1_ValueChanged(object sender, EventArgs e)
    {
      int val = (int)(numericUpDown1.Value);
      radListControl1.SelectedIndex = val;
    }

  }
}
Dimitar
Telerik team
 answered on 26 Feb 2014
3 answers
451 views
how do i do this? the "Current" only highlights the item but not really selecting it. is there another way?
Dimitar
Telerik team
 answered on 26 Feb 2014
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
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
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?