Click here to Skip to main content
15,868,292 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Bind to property in static instance of class Pin
Pete O'Hanlon14-Sep-11 3:23
subeditorPete O'Hanlon14-Sep-11 3:23 
GeneralRe: Bind to property in static instance of class Pin
Mc_Topaz14-Sep-11 4:15
Mc_Topaz14-Sep-11 4:15 
GeneralRe: Bind to property in static instance of class Pin
Ian Shlasko14-Sep-11 4:27
Ian Shlasko14-Sep-11 4:27 
GeneralRe: Bind to property in static instance of class Pin
Mc_Topaz14-Sep-11 4:54
Mc_Topaz14-Sep-11 4:54 
GeneralRe: Bind to property in static instance of class Pin
Ian Shlasko14-Sep-11 5:00
Ian Shlasko14-Sep-11 5:00 
GeneralRe: Bind to property in static instance of class Pin
Pete O'Hanlon14-Sep-11 4:39
subeditorPete O'Hanlon14-Sep-11 4:39 
GeneralRe: Bind to property in static instance of class Pin
Mc_Topaz14-Sep-11 4:49
Mc_Topaz14-Sep-11 4:49 
QuestionWPF: Unable to set MouseOver effect for ComboBox Pin
All Time Programming13-Sep-11 0:39
All Time Programming13-Sep-11 0:39 
Hi,

I have a Combobox, who gets Gradient blue color when mouse-over or clicked. I managed to change the color of selecting Items background, but the mouse over background color couldn't change.

HTML
<Style x:Key="ComboStyle" TargetType="{x:Type ComboBox}">
     <Setter Property="Template">
         <Setter.Value>
             <ControlTemplate TargetType="{x:Type ComboBox}">
                 <Border Name="bd" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding Background}" Padding="2">
                     <ContentPresenter />
                 </Border>
                 <ControlTemplate.Triggers>
                     <Trigger Property="IsMouseOver" Value="True">
                         <Setter TargetName="bd" Property="Background" Value="#F7F7F7" />
                     </Trigger>
                 </ControlTemplate.Triggers>
             </ControlTemplate>
         </Setter.Value>
     </Setter>
 </Style>


On adding the above code, MouseOver is definetely achieved i.e. Background color is changed on MouseOver. But with this, I can't see the drop down triagle icon or click the combobox that shows the drop down.

What am I lacking and ho to achieve it ? Any help is highly appreciated.

Thanks & Regards,


AnswerRe: WPF: Unable to set MouseOver effect for ComboBox Pin
Ian Shlasko14-Sep-11 4:40
Ian Shlasko14-Sep-11 4:40 
QuestionInfinite Scrolling in Canvas Pin
Praveen Raghuvanshi12-Sep-11 2:40
professionalPraveen Raghuvanshi12-Sep-11 2:40 
AnswerRe: Infinite Scrolling in Canvas Pin
tom-englert19-Sep-11 20:42
tom-englert19-Sep-11 20:42 
GeneralUser must not be able to open same site again in other browser or tab Pin
Satish Pai8-Sep-11 7:33
Satish Pai8-Sep-11 7:33 
GeneralRe: User must not be able to open same site again in other browser or tab Pin
Pete O'Hanlon8-Sep-11 9:10
subeditorPete O'Hanlon8-Sep-11 9:10 
AnswerRe: User must not be able to open same site again in other browser or tab Pin
Simon Bang Terkildsen9-Sep-11 9:08
Simon Bang Terkildsen9-Sep-11 9:08 
QuestionHow to place a multiple window controls inside one window control in WPF Pin
Rocky236-Sep-11 1:52
Rocky236-Sep-11 1:52 
AnswerRe: How to place a multiple window controls inside one window control in WPF Pin
Wayne Gaylard6-Sep-11 2:13
professionalWayne Gaylard6-Sep-11 2:13 
GeneralRe: How to place a multiple window controls inside one window control in WPF Pin
Rocky236-Sep-11 2:47
Rocky236-Sep-11 2:47 
GeneralRe: How to place a multiple window controls inside one window control in WPF Pin
Pete O'Hanlon6-Sep-11 2:57
subeditorPete O'Hanlon6-Sep-11 2:57 
GeneralRe: How to place a multiple window controls inside one window control in WPF Pin
Wayne Gaylard6-Sep-11 3:00
professionalWayne Gaylard6-Sep-11 3:00 
AnswerRe: How to place a multiple window controls inside one window control in WPF Pin
Pete O'Hanlon6-Sep-11 2:15
subeditorPete O'Hanlon6-Sep-11 2:15 
QuestionWPF - basic data binding and "Save" x "Cancel changes" Pin
Member 10339075-Sep-11 5:33
Member 10339075-Sep-11 5:33 
AnswerRe: WPF - basic data binding and "Save" x "Cancel changes" Pin
Pete O'Hanlon5-Sep-11 5:40
subeditorPete O'Hanlon5-Sep-11 5:40 
GeneralRe: WPF - basic data binding and "Save" x "Cancel changes" Pin
SledgeHammer019-Sep-11 10:01
SledgeHammer019-Sep-11 10:01 
GeneralRe: WPF - basic data binding and "Save" x "Cancel changes" Pin
SledgeHammer019-Sep-11 10:46
SledgeHammer019-Sep-11 10:46 
GeneralRe: WPF - basic data binding and "Save" x "Cancel changes" Pin
SledgeHammer019-Sep-11 11:14
SledgeHammer019-Sep-11 11:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.