North American Sales: 1-800-231-8588
Global Contacts
My Account
Menu
North American Sales: 1-800-321-8588
My Account
Sign In/Register
Design & Development
Design & Develop
Best Value
Infragistics Ultimate
The complete toolkit for building high performing web, mobile and desktop apps.
Indigo.Design
Use a unified platform for visual design, UX prototyping, code generation and application development.
Web
Ignite UI for Angular
Ignite UI for JavaScript
Ignite UI for React
Ultimate UI for ASP.NET
Indigo.Design
Desktop
Ultimate UI for Windows Forms
Ultimate UI for WPF
Prototyping
Indigo.Design
Mobile
Ultimate UI for Xamarin
Ultimate UI for iOS
Ultimate UI for Android
Automated Testing Tools
Test Automation for Micro Focus UFT: Windows Forms
Test Automation for Micro Focus UFT: WPF
Test Automation for IBM RFT: Windows Forms
UX
Indigo.Design Desktop
Collaborative prototyping and remote usability testing for UX & usability professionals
Indigo.Design
A Unified Platform for Visual Design, UX Prototyping, Code Generation, and App Development
Business Intelligence
Reveal Embedded
Accelerate your time to market with powerful, beautiful dashboards into your apps
Reveal App
Empower everyone in your organization to use data to make smarter business decisions
Team Productivity
Learn & Support
Support
Help & Support Documents
Blogs
Forums
Product Ideas
Reference Applications
Customer Stories
Webinars
eBook & Whitepapers
Events
Free Trials
Pricing
Product Pricing / Buy Online
Renew Existing License
Contact Us
Forums
Ultimate UI for Windows Forms
Your Privacy Matters
: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use.
Cookie Policy
Close
State
Suggested Answer
Replies
12 replies
Answers
1 answer
Subscribers
7 subscribers
Views
1765641 views
Users
0 members are here
Share
More
Cancel
225
UltraComboEditor Changing a cell property
Armin
posted
over 11 years ago
Hello
I
use
a
UltraCombo
control
that
is
bound
to
a
data source
.
Before
the
UltraCombo
pops
up,
I
want to
change
the
background color
of the
selected
rows
in
a
cell
or
an
entire
column
.
(see
attachment)
.
This
works
only
with
a
draw filter
?
Unfortunately
,
I
could
find
no
similar
example
in
this
forum
.
For
a
code example
,
I
would be
very
grateful
.
Thanks
already
for
your
efforts
!
Jörg
//
Unwanted background color.jpg
View
Hide
Parents
No Data
Reply
469350
Offline
Mike Saltzman
posted
over 11 years ago
Hi,
Have you tried setting the SelectedAppearance on the Cell?
Cancel
Reply
Cancel
Children
225
Offline
Armin
posted
over 11 years ago
in reply to
Mike Saltzman
Hello
Mike
,
yes
I
've
tried
already
that
as
follows
:
ultraCombo1.SelectedRow.Cells[0].SelectedAppearance.BackColor = Color.White;
ultraCombo1.SelectedRow.Cells[0].Appearance.BackColor = Color.White;
ultraCombo1.ActiveRow.Cells[0].SelectedAppearance.BackColor = Color.White;
ultraCombo1.ActiveRow.Cells[0].Appearance.BackColor = Color.White;
ultraCombo1.DisplayLayout.ActiveRow.Cells[0].SelectedAppearance.BackColor = Color.White;
ultraCombo1.DisplayLayout.ActiveRow.Cells[0].Appearance.BackColor = Color.White;
ultraCombo1.DisplayLayout.Rows[ultraCombo1.SelectedRow.Index].Cells[0].SelectedAppearance.BackColor = Color.White;
ultraCombo1.DisplayLayout.Rows[ultraCombo1.SelectedRow.Index].Cells[0].Appearance.BackColor = Color.White;
Unfortunately
,
this
has
not
led
to
the
desired
result
.
Jörg
//
Cancel
Reply
Cancel