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

DevExpress VerticalGrid in unbound mode with MultiRecordLayout

EDIT: As it turns out, the grid does not support unbound mode in MultiRecordView layout. I will try to ask this question a different way since my last one was downvoted without comment, so I don't know what the downvoter was objecting to. I've…
Tim
  • 8,669
  • 31
  • 105
  • 183
0
votes
1 answer

DevExpress set focus to specific row of VerticalGrid

My code to set the focus to a specific row of the VerticalGrid is not working. this.ActiveControl = vGridControl1; vGridControl1.Focus(); vGridControl1.FocusedRow = vGridControl1.GetRowByFieldName("addr1"); I have confirmed that…
Tim
  • 8,669
  • 31
  • 105
  • 183
0
votes
1 answer

DevExpress Winforms Grid how to set focus to a row

To take advantage of DevExpress Winforms XtraGrid incremental search, the user must first click on a row before typing. How to set focus on the first row programmatically, to avoid that step? In the control's DataSourceChanged event, I've tried…
Tim
  • 8,669
  • 31
  • 105
  • 183
0
votes
1 answer

Tree View Datagridview in devexpress

I tried many times to create a master view of the table along with its details and visualize that in a Gridcontrol (from Devexpress) here is the code *I do not want to rely on the automatic generation of codes by Devexpress designer! '…
0
votes
2 answers

How to implement multiple cell selection using RepositoryItemCheckEdit in Devexpress XtraGrid?

Devexpress grid view repository checkedit auto-unselects immediately after I select next cell's checkedit. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load ConnectDatabase() loadv() End Sub Private Overloads Sub…
0
votes
1 answer

devexpress RowSeparatorHeight with merge cell

I want a RowSeparatorHeight after the merged rows only this image for problem
0
votes
0 answers

Missing controls from the Controls list in XtraUserControl

I have a XtraUserControl (is a DevExpress implementation of WinForms UserControl class) with several controls inside. I have identified a memory leak when I open and close the form that contains this XtraUserControl, so I want to force the dispose…
Ignacio
  • 806
  • 1
  • 10
  • 29
0
votes
1 answer

find checkedit control in devexpress gridcontrolrow in c#

I have devexpress grid control in my windows form. And i have check edit control inside my grid . I need to find checkedit control at runtime from each row and based on other cell value i need to disable the checkbox if required. Plz…
Sangeetha
  • 601
  • 3
  • 12
  • 26
0
votes
2 answers

Binding from object to devexpress grid

I have a normal data binding situation where my underlying question object properties are bound to columns in a devexpress XtraGrid.GridControl. However, I have one text property that takes the form of "{Question|True},{Question|False}". These must…
majjam
  • 1,286
  • 2
  • 15
  • 32
0
votes
2 answers

Devexpress gridview change row background color when modified from outside the grid view

I have a gridview of items in an invoice. I implemented a code to receive barcode number in a text box outside the grid. Now if the scanned item is new it's added to the grid view. But if it already exists the program increases the quantity of the…
Abo Haidar
  • 1
  • 1
  • 1
0
votes
0 answers

How to make my grid group columns read-only in Windows Form DevExpress?

I want to make read-only group columns. baseGrid.gvForm.Columns["Column"].OptionsColumn.ReadOnly = false; baseGrid.gvForm.Columns["Column"].OptionsColumn.AllowEdit = true; I think it can be like that grouped version. Could you help me ? Really I…
0
votes
2 answers

What is the component of this component in DevExpress?

How is this happening here? Tab controller?
Erkan
  • 33
  • 2
  • 9
0
votes
2 answers

How to prevent auto focus of find panel in devexpress grid control

My form only have grid control and ribbon bar. I want auto focus to first cell of grid view when form loaded. Problem is : when form is loaded, it auto focus in find panel of the grid instead of grid cell. I tried like this but not works. Help,…
Triple K
  • 379
  • 1
  • 3
  • 14
0
votes
1 answer

Is it possible to set the button font for DevExpress ButtonEdit when it is in Glyph mode

I want to use codepoint #1F50D (magnifying glass) as the character displayed by the button of the DevExpress WinForm ButtonEdit control. Most fonts don't have a glyph at that codepoint, but some do. Can the button's font be set?
Tim
  • 8,669
  • 31
  • 105
  • 183
0
votes
0 answers

how to delete default style rules in gridview devexpress?

I have a column in the GridView named UnitPrice (data type: Integer). I dont' choose any Format Rules. when I run the program, then this column is set default Rule (Format Rules): data format using Format Bar. The version of Devexpress is 15.1. How…