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
1 answer

how to apply Font and FontSize to numeration of list

is there a way to apply Font and FontSize settings to a numbered list? There are 2 ways to set this settings to a TEXT of list: document.InsertList( numberedList, .Font(new Xceed.Words.NET.Font("Cambria"), 15 ); numberedList.Items[2].Font(new…
0
votes
1 answer

Xceed DocX How to create an index in a generated word document

I'm using Xceed in C# .Net I can't find any documentation on how to create an index with Xceed/DocX. Is it even possible to do in the first place? I'd like to create one from scratch, because I'm not using a template.
Carlove
  • 429
  • 1
  • 4
  • 15
0
votes
1 answer

Xceed Docx returns blank document

noob here, i want to export a report as docx file using the xceed docx, but it returns blank document (empty) MemoryStream stream = new MemoryStream(); Xceed.Words.NET.DocX document = Xceed.Words.NET.DocX.Create(stream); …
jks
  • 63
  • 1
  • 10
0
votes
1 answer

Unable to change checkbox colors in xceed checklistbox

How can we change the tick color of checkbox in Xceed's CheckListbox control. I have already tried this code
Shweta Goyal
  • 94
  • 1
  • 9
0
votes
1 answer

WPFToolkit.Aero2 failed to load

I get this error when debugging: Managed Debugging Assistant 'BindingFailure' : 'The assembly with display name 'WPFToolkit.Aero2' failed to load in the 'Load' binding context of the AppDomain with ID 1. The cause of the failure was:…
user1902346
  • 799
  • 1
  • 12
  • 21
0
votes
1 answer

Unable to get SelectedItems through Xceed CheckListBox using MVVM

I have been using wpf xceed third party library for some of the UI components. I really like the way CheckListBox is being displayed at the screen. But I am not able to get the selectedItems bound to any property in the viewmodel (the setter never…
Shweta Goyal
  • 94
  • 1
  • 9
0
votes
1 answer

Xceed Property Grid style name based on value

I want to set background of "Name2" to gray because the value is "2". How can I achieve this? I tried using DataTrigger with a converter on "PropertyItem" but I had no luck.
Jonas Jensen
  • 77
  • 2
  • 9
0
votes
1 answer

xceed DataGrid CellEditor binding to corresponding row

I have an Xceed DataGrid with some elements. I want property Email to be editable according to value of bool property AllowEmailEdit. I tried this, but I couldn't specify correct bindings:
obratim
  • 467
  • 5
  • 13
0
votes
1 answer

Error in Xceed datagrid library end edit

I use Xceed dll library in my WPF c# application. Sometimes my users get an error when they reach myGrid.EndEdit(). Error is: An attempt was made to call the EndEdit method of an item that is not part of the specified context. How do I can get…
Merta
  • 965
  • 1
  • 11
  • 23
0
votes
0 answers

UI ignores the boolean from the checkbox

Consider the following scenario: -You have a tabbed interface and it has four tabs. -You put a few components and you bind them like this:
acemod13
  • 55
  • 8
0
votes
1 answer

How to change propertygrid grid row line color wpf?

I use xceed.wpf.toolkit.propertygrid in my project. But grid row line is not clear to see. image is here How can i change grid row line color and thickness to clear visibilty.
Osman
  • 1
  • 1
0
votes
1 answer

Xceed CheckComboBox Not Retuning Expected Value

I have a CheckComboBox in a toolbar defined as follows:
SezMe
  • 527
  • 8
  • 24
0
votes
1 answer

xceed MaskedTextBox Mask Binding to Greater Than symbol

Unable to bind simple text mask in xceed MaskedTextBox var state = new MaskedEditableTextField(String.Empty, "State", ">LL", rules);
Chris Hayes
  • 3,876
  • 7
  • 42
  • 72
0
votes
1 answer

Xceed ColorPicker - SelectedColor property doesn't update

I have this xceed color picker in my view called NewWindow:
KarelPrdel
  • 99
  • 1
  • 1
  • 7
0
votes
2 answers

Set checked items in CheckComboBox

I'm using the Xceed checkable combobox. I need to set a few items as checked items: C# code: public partial class DataSelector :…
Kirill
  • 429
  • 1
  • 6
  • 18