Questions tagged [xceed]

Xceed is a provider of software components and tools for the Microsoft .NET platform.

Xceed offers a broad range of software components and tools that appeal to .NET, Windows Forms, WPF, Silverlight and ASP.NET developers for building better applications. It is best known for its zip compression libraries and data grid controls, used by Microsoft in Microsoft Office 2007, Visual Studio Team System 2010, Windows Home Server and Flight Simulator among others.

315 questions
0
votes
2 answers

How can I keep a menu submenu item open?

I'm trying to create a somewhat complex menu item that would allow a user to create a new class. The problem into which I am running is that when I click on a numeric up-down ( from the xceed toolkit ) that the menu item closes, even with the…
Will
  • 3,413
  • 7
  • 50
  • 107
0
votes
1 answer

Sort list in Propertygrid in XAML

Following this Topics Xceed WPF propertyGrid show item for expanded collection, how is it possible with XAML to sort the list by Name when Binding to Classes ? Everytime I would like to add a new Item it should be immediately sorted. It doesn't work…
0
votes
1 answer

DataGrid Column Custom Binding

I am quite new and really struggle with the below issue: I have a below column, which loads data correctly: But I would need to modify it, by selecting a value from a…
Denis
  • 37
  • 1
  • 6
0
votes
1 answer

Draw graphs in WPF application

I am new to C# and WPF, this is my first application. I managed to display the content of a csv file in a window and I wish to draw charts of this data (column based on the other ...). My problem is that I can not install the Xceed Wpf Toolkit on my…
d.el
  • 51
  • 10
0
votes
1 answer

How to add a binding to UIElement's property, without SetBinding() method?

I'm asking about Column object - DataGridControl from Xceed's WPF Extended Toolkit. I need to create a Column in code, and add a binding to its Width property. Column class doesn't expose the SetBinding() method. Although in XAML - it supports…
Alexey Titov
  • 235
  • 2
  • 9
0
votes
1 answer

Xceed DataGrid - is it possible to make a 'partial sorting'?

I have a WPF/MVVM project that uses Xceed DataGridControl. Its ItemsSource is PagedCollectionView (Silverlight code). Now I do grouping by LastName field, and get grouped data in the grid - Smith's (5 rows), Johnson's (10 rows), Williams's (15…
Alexey Titov
  • 235
  • 2
  • 9
0
votes
1 answer

No copy reaction on ctrl+c or shift+c

By defined gesture try to execute method XceedCopyCommandExecute, but this method has never been call. And when use this gesture, it just copy whole row with column header. Try to avoid to copy withnout headercolumn. Any idea how to solve it ?…
itgeek
  • 49
  • 4
0
votes
2 answers

Extended WPF Toolkit - PropertyGrid expand search functionality

The Extended WPF Toolkit contains a PropertyGrid control, which allows to edit object properties. One of the feature the PropertyGrid has, is searching through the property names: Currently, while searching, you have to match to the exact ordering…
omerts
  • 8,485
  • 2
  • 32
  • 39
0
votes
1 answer

Caliburn.Micro custom ViewModelLocator: bind usercontrol property in ItemContainerStyle

I'm using the Xceed toolkit WindowContainer and ChildWindows to generate a dynamic client area consisting of multiple windows (container), each containing multiple custom user controls (elements). These windows can be freely moved, resized and…
Nico Ecker
  • 43
  • 5
0
votes
1 answer

c# xceed PropertyGrid work with System.Windows.Media.PointCollection

I have a problem. I using property grid to set Collection of points, but program give me InvalidOperationException: collection has been changed… I try use Custom converter but no result :( What am I doing wrong? Could someone write the correct…
RicmanXFF
  • 11
  • 4
0
votes
1 answer

xceedCompressionClass compress returns xceSuccess but does not compress

I am using Xceedzip.dll COM Component 4.2 for in-memory compression (and I am referring to this documentation). public void compressionCode(const char *loginRequestData) { XceedCompression ^compression = gcnew XceedCompressionClass(); …
0
votes
1 answer

Modify the size of ColorPicker palette

Due to some GUI size constraints, I would like to modify the size of the Color Palette of the XCeed ColorPicker. The width of the button is smaller than the dropdown popup; I just want to change the width of the popup (or the height) to impose a…
Bentoy13
  • 4,886
  • 1
  • 20
  • 33
0
votes
0 answers

Wrong button sizes while using wpf xceed toolkit wizard

I'm using the wizard from the wpf xceed toolkit. The problem is that the buttons are not the same sizes. All examples I can find show the buttons the same sizes. When I use it, the Cancel and Finish buttons are larger, and the Cancel button is…
jlady
  • 181
  • 1
  • 4
0
votes
1 answer

Xceed Datagrid won't bind to DataTemplate of Xceed control

I have the following DataTemplates defined. The TextBlock works the xctk:ShortUpDown does not. In fact whenever I use a control from another namespace it doesn't work (i.e. no data displayed or updated
gbt
  • 1
  • 1
0
votes
1 answer

Expanding all groups, including nested, in an xceed DataGridControl

I am able to expand a single group fine, but my app uses nested groupings. Im attempting to do something as follows: foreach (CollectionViewGroup group in GridControl.Items.Groups) { if (group !=…
Derek Meyer
  • 497
  • 7
  • 22