Search
You searched for the word(s): [no words] || User(s): tanner
Showing page 1 of 5 (41 total posts)
< 1 second(s)
-
Well,
I was hoping someone would have replied.
I'll keep testing things but I still need to figure out how I am supposed to change the itemssource of a datagridcontrol without losing my scroll position/selected row/expanded row information.
My ''load control'' logic uses a datalayer to call for and fill a datatable object ...
-
Hello,
I've worked with the wpf datagridcontrol for a little while now and I have a couple questions regarding functionality that I seem to want but not that many others on here are posting about. So it leads me to believe that my approach on some things might be a bit flawed since others aren't having the same issues in their production ...
-
Thanks for the tip Michel.
-
Hello,
I'm trying to figure out why my datacell text seems to ignore my style when my wpf application is running on server 2008 r2 or server 2003. It all looks fine on the development machine, which is win 7.
Is this due to my lack of a resource dictionary for that particular OS?
Is there not a way to just set in code for my grid to ...
-
Michel,
In the PreviewMouseMove how are you able to determine which cell the mouse is moving over? Are you doing a hit test to get coordinates then checking the typeof cell at that coordinate? Or is there a easier method for determining the cell?
-
I have a grid which uses a date column as a grouping source and I would like to use a couple of buttons on my usercontrol to allow the user to sort the groups ascending or descending.
How do I do that? I cant find anything on the grid or on the collectionview that shows me a way to sort the groups.
-
well I found this code will do what I need
for (int i = 0; i < columnorder.Count - 1; i++)
{
...
-
I can get a reference to the collection of visible columns ordered by visiblity index with this
System.Collections.ObjectModel.ReadOnlyObservableCollection<Xceed.Wpf.DataGrid.ColumnBase> columnorder = myGrid.VisibleColumns;
but when I go to assign this value the property is read-only on the datagridcontrol.
Is there ...
-
ok well this only seems to happen with tableview. I swapped over to tableflowview and restyled my group expander and everything is fine now.
I'm on v4.3 of the datagridview library.
-
Hello,
Normally I align my datagridview cells by using styles like this:
<Style.Triggers>
<DataTrigger Binding=''{Binding FieldName, RelativeSource={RelativeSource Self}}'' Value=''Hour''>
<Setter Property=''HorizontalContentAlignment'' Value=''Center''/>
</DataTrigger>
<DataTrigger ...
1
|
|
|
|