You searched for the word(s): userid:25394
-
I have created a layout view label from the layout view designer and put in on my layout. I was trying to make it bold but I could not do it. I tried changing it in the windows designer still it does not show up as bold. Is there any way to do it? Thanks
-
Is there anyway to not show a tooltip from the tooltip controller on mouse hover and show it when the i click on the grid cell in layoutview. Based upon the location of the mouse pointer I am using the below code to show the tooltip. I have to do this because the tooltip for the grid in layoutview is not showing up so I have to add this logic for it to show up. The problem after this logic has been the tool tip are very inconsistent sometimes it shows up the tooltip of the old column and sometimes
-
Look at the preview in the xtragrid tutorials for showing the preview they are using the customrowdrawpreview event and you are using the row cell style event. Try changing the event and also check out the preview sample in the xtragrid tutorials //<checkEdit3> private void gridView1_CustomDrawRowPreview(object sender, DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventArgs e) { if(checkEdit3.Checked) { int dx = 5; Rectangle r = e.Bounds; r.X += e.Bounds.Height + dx * 2; r.Width -= e.Bounds
-
It would be good idea to first upgrade the visual studio first. Then try upgrading the developer express software
-
Dev x support team suggested the below solutions and it worked for me. private void layoutView1_MouseWheel( object sender, MouseEventArgs e) { ((DXMouseEventArgs)e).Handled = true ; }
-
When I move my mouse wheel in the layout view it goes from one card to another. Is there any way I can disable this?
-
I dont like messing with designer code but how about changing the height of the embedded navigator in the designer.cs file?
-
I have the same issue did you ever solve this problem? If yes please let me know about the solution. Thanks
-
what the problem in using the button edit I thought it had the functionality of the normal button?
-
If I press F10 a hand symbol shows up and I scroll the card in the layout view up and down but it will be annoying to the users. Is there anyway I can use the mouse scrolling instead of using the hand symbol which comes up when I press the F10 for scrolling the card in the layout view? Thanks for the information