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 layout of the available standard colors. By default we have 10 columns of colors, I would like to have 6 or 8 columns of colors. Is there any mean to do that?
Modify the size of ColorPicker palette
1k Views Asked by Bentoy13 At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in COLOR-PICKER
- as3 colorPicker .colors property
- Getting Memory Out For using color picker
- Spectrum color picker: the original input field is showing
- Assign unique color to user profiles in AngularJS
- PowerPoint 2010 - VBA - Use Ribbon Button Inside of a Userform
- How to make a color picker SeekBar programmatically
- Color Picker Tool is not being shown in the gutter area Intellij IDEA for CSS files
- JavaFX - Add image to ColorPicker
- Unity 2D : Get pixel of color of Raw Image
- Simple color picker
- How to change or override the tooltip in JavaFX ColorPicker
- How to Remove Apply Button in a Telerik RadColorPicker From Code Behind
- jQuery Colorpicker add multiple color pallettes in one div
- SpectrumJS, dragger and slider position issue with display: none container
- Display custom color dialog directly- JavaFX ColorPicker
Related Questions in XCEED
- Xceed WPF propertyGrid Custom Collection editor
- Does a derived Dictionary really require the NewItemTypesAttribute to work with the Xceed CollectionEditor?
- Select Editor in Extended WPF Toolkit PropertyGrid
- Rebinding a Xceed DataGrid column to accept special characters
- GroupLevelIndicatorPane causes ColumnStretchMode=ALL to not fit columns
- How to set selectedcolor of ColorCanvas by using Argb in code behind
- Xceed datagrid - change datarow colour based on DateTime value
- Xceed DataGridCollectionViewSource with Sample Data Source
- How to fix Xceed DateTimePicker ArgumentOutOfRangeException Error
- c# wpf sort list of tuple<time>
- Xceed DataGrid: Remove spacing above detail rows
- Xceed DataGrid: Edit cell with keyboard navigation
- How add wpf usercontrol in xceed wizard control?
- xceed Propertygrid - how to use a property collection
- xceed.wpf.toolkit ColorPicker XAMLparseException error in windows server 2008
Related Questions in WPF-EXTENDED-TOOLKIT
- How to find a difference between two dates from WPF Extended Toolkit?
- WPF Extended Toolkit PropertyGrid: Hide empty category
- How to display other than the first wizard page of an Xtended WPF Toolkit Wizard in designer?
- Extended WPF Toolkit Wizard - Set IsDefault = true for Next button
- DateTimePicker Missing Dropdown Button
- AutoCAD Custom Extended WPF UpDown
- C#/WPF - IntegerUpDown Control PropertyChanged
- Editing the style of xctk:DoubleUpDown Control
- Binding WPF Extended Toolkit ColorPicker SelectedColor Property to DependencyProperty
- WPF Extended Toolkit PropertyGrid - Compose SelectedObject
- Bind DoubleUpDown Value after Minimum and Maximum
- Modify the size of ColorPicker palette
- How to set custom color picker color from a string?
- How change the control language?
- WPF: Is there a way to override part of a ControlTemplate without redefining the whole style?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In the default template for the ColorPicker, you will notice a ListBox with the name "PART_AvailableColors". That ListBox uses a Style called "ColorListStyle". In that Style, we set the ItemsPanel property to be a WrapPanel with a width of 200.
Unfortunately, there is currently no built-in way to easily change the layout of the ColorPicker, so for now the only option I can offer is to redo the Template/Style in your code to set a different width on the WrapPanel.
The default Templates and Styles can be found in the source code that comes with the Toolkit.
Edit: the property
MaxDropDownWidthwas added on the ColorPicker to customize the width of the popup (new in version 3.1).