Questions tagged [devexpress-windows-ui]

Questions about controls in DevExpress WinForms libraries

DevExpress is a company that provide the WinForms Controls in order to create rich applications easily.

333 questions
0
votes
1 answer

How to make the "today" button appear in DevExpress.DateEdit?

I am using DevExpress.DateEdit control in WinForms version number 12.1. How can i make the today button appear in this and also how can i navigate month wise. For now i have navigation year wise. I am using .net 4.0 Winforms, DevExpress.DateEdit…
roopini n
  • 503
  • 2
  • 7
  • 29
0
votes
1 answer

Adding row in tree list after every child node

I m using devexpress tools and while using treelist i want to apply this. I want to add a row after every child node which could take text values and the size of the row should be stretched to the full width.How can i do this..?
0
votes
1 answer

AutoSize for BarEditItem - DevExpress

I have a toolbar of type Dev Express xtraBar. Its not a ribbon control. It contains a type of BarEditItem. I need the width of BarEditItem to be variable , how can this be done in code? I mean if its inside a docked container and I resize the docked…
user1821499
  • 301
  • 4
  • 22
0
votes
1 answer

Transfer data to gridview columns

I have a main grid and one of the columns is editbutton. When I click the edit button inside the this grid,open an another form. After double click the this form, it is closed and I move the values to the my main grid. But so far, I t can transfer…
user1865552
0
votes
1 answer

I want to display a logo in PictureBox control irrespective of ImageURL in DevExpress Report control?, how could i do this?

There one Print i'm generating in DevExpress Report COntrol and I wanted to show Company logo in the print. Someone please help me to show image as logo in XRPicturebox control without Database binding and without providing ImageURLi.e. irrespective…
0
votes
1 answer

Align series by value in DevExpress XtraCharts

I have a DevExpress XtraChart object with several series, all of type: line. I have a requirement from a client to align the series by the max value of each series. This is without regard to the attached axis, has anyone done this before?
0
votes
2 answers

devexpress Ribbon Control- how to create menu and submenu if child elements exist

This is how my data is stored in database. id parentId menu filename 1 0 Menu1 2 1 Sub Menu 1.1 3 0 Menu2 4 3 Sub Menu2.1 5 3 …
user1254053
  • 755
  • 3
  • 19
  • 55
0
votes
1 answer

Keydown event auto recall

i have code: private void textEdit_KeyDown(object sender, KeyEventArgs e) { //line start if (e.KeyCode == Keys.Enter) { //Do something e.SuppressKeyPress = true; } //line done } when i press enter key, event is fire,…
KaKa
  • 133
  • 1
  • 2
  • 9
0
votes
2 answers

Devexpress 13.2 - add browse button in treelist column

I have a table in database with columns as: CategoryId CategoryName ParentCategoryId CategoryPath The CategoryPath will have the values only when it is a child element. Now to populate the treeviewlist i have written the following code: DataTable…
user1254053
  • 755
  • 3
  • 19
  • 55
0
votes
1 answer

Make footer visible on all existing ListViews

Is there a way to make the footer automatically visible on a ListView? The application I'm working on has around 40-50 ListViews, and it's inconvenient to go through every ListView in the designer and check "IsFooterVisible". Not to mention that…
contactmatt
  • 18,116
  • 40
  • 128
  • 186
0
votes
1 answer

What is the unit of measure used to specify the width of the columns of the DevExpress GridView?

I have a WinForm application with a DevExpress GridView. I have set the width of each column manually in the designer, but they doesn't seen to have followed the sizes I have set. I thought the width might was measured in pixels. I think the Grid is…
0
votes
1 answer

Repository spinEdit issue

I have read many articles here about spin edit and just cant solve this problem... I added spin Edit and check Edit repositories in my tree list columns, but when i press spin Edit up/down arrows, value is not changing. And when i click on check…
Mlad3n
  • 133
  • 1
  • 4
  • 14
0
votes
1 answer

How to make message entry/list/view in C#

He I am a beginner to C# and I am working on a reaction manager plug-in for some bigger project. (Yes I am a intern) Now I just can't find a way to create a view similar to this: My full design: How to realize this design? I cant find any default…
0
votes
1 answer

Make active tab text bold - DevExpress WinForm

I want to make active tab text bold , tabs are DevExpress xtraTabs So, wherever the DevExpress XTraTabs are used, make the text of active tab bold. Set this property once and not everywhere.How to achieve this?
user1821499
  • 301
  • 4
  • 22
0
votes
1 answer

After the "printingSystem1.ExportToImage (file name)", I do not want to run any software to view the images. What should I do?

/* I use of DevExpress component */ BrickGraphics gr = printingSystem1.Graph; BrickStringFormat bsf = new BrickStringFormat(StringAlignment.Near, StringAlignment.Center); gr.StringFormat = bsf; …