Click here to Skip to main content
15,794,475 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: ComboBox Items Not Showing Up Pin
Mycroft Holmes7-Aug-17 16:22
professionalMycroft Holmes7-Aug-17 16:22 
GeneralRe: ComboBox Items Not Showing Up Pin
Kevin Marois8-Aug-17 5:51
professionalKevin Marois8-Aug-17 5:51 
GeneralRe: ComboBox Items Not Showing Up Pin
Kevin Marois8-Aug-17 6:33
professionalKevin Marois8-Aug-17 6:33 
GeneralRe: ComboBox Items Not Showing Up Pin
Mycroft Holmes8-Aug-17 14:57
professionalMycroft Holmes8-Aug-17 14:57 
QuestionListBox Style Problem Pin
Kevin Marois27-Jul-17 7:53
professionalKevin Marois27-Jul-17 7:53 
AnswerRe: ListBox Style Problem Pin
Henrik Jonsson7-Aug-17 10:35
Henrik Jonsson7-Aug-17 10:35 
QuestionStyle Not being Applied Pin
Kevin Marois24-Jul-17 8:43
professionalKevin Marois24-Jul-17 8:43 
AnswerRe: Style Not being Applied Pin
Richard Deeming24-Jul-17 8:54
mveRichard Deeming24-Jul-17 8:54 
Kevin Marois wrote:
When I click into the textbox, the code behind runs as expected. Yet I don't see anything in the textbox.

Which is what you told it to do:
Kevin Marois wrote:
if (IsFocused)
{
    // If the watermark is showing, remove it
    if (Text.CompareTo(WatermarkText) == 0)
    {
        Text = string.Empty;
    }
}



Kevin Marois wrote:
When I click out, the watermark text appears, but in black and not italic.

Which is also what you told it to do:

Kevin Marois wrote:
<Setter Property="FontStyle" Value="Normal"/>
<Setter Property="Foreground" Value="Black"/>
...
<Trigger Property="IsFocused" Value="True">
    <Setter Property="Foreground" Value="Red"/>
    <Setter Property="FontStyle" Value="Italic"/>
</Trigger>




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: Style Not being Applied Pin
Kevin Marois24-Jul-17 11:17
professionalKevin Marois24-Jul-17 11:17 
GeneralRe: Style Not being Applied Pin
Richard Deeming25-Jul-17 1:37
mveRichard Deeming25-Jul-17 1:37 
GeneralRe: Style Not being Applied Pin
Kevin Marois25-Jul-17 5:36
professionalKevin Marois25-Jul-17 5:36 
QuestionHandle DataGrid Row Model Property Change Pin
Kevin Marois21-Jun-17 13:45
professionalKevin Marois21-Jun-17 13:45 
AnswerRe: Handle DataGrid Row Model Property Change Pin
Mycroft Holmes21-Jun-17 21:54
professionalMycroft Holmes21-Jun-17 21:54 
AnswerRe: Handle DataGrid Row Model Property Change Pin
Pete O'Hanlon21-Jun-17 22:46
subeditorPete O'Hanlon21-Jun-17 22:46 
GeneralRe: Handle DataGrid Row Model Property Change Pin
Kevin Marois22-Jun-17 5:01
professionalKevin Marois22-Jun-17 5:01 
GeneralRe: Handle DataGrid Row Model Property Change Pin
Pete O'Hanlon22-Jun-17 6:03
subeditorPete O'Hanlon22-Jun-17 6:03 
GeneralRe: Handle DataGrid Row Model Property Change Pin
Mycroft Holmes22-Jun-17 15:41
professionalMycroft Holmes22-Jun-17 15:41 
GeneralRe: Handle DataGrid Row Model Property Change Pin
Pete O'Hanlon22-Jun-17 22:18
subeditorPete O'Hanlon22-Jun-17 22:18 
GeneralStop user from killing of a running wpf application from background processes in task manager. Pin
Naushad Ansari16-Jun-17 0:24
Naushad Ansari16-Jun-17 0:24 
GeneralRe: Stop user from killing of a running wpf application from background processes in task manager. Pin
Pete O'Hanlon16-Jun-17 0:46
subeditorPete O'Hanlon16-Jun-17 0:46 
QuestionBind To DP On Control Pin
Kevin Marois15-Jun-17 6:26
professionalKevin Marois15-Jun-17 6:26 
AnswerRe: Bind To DP On Control Pin
Pete O'Hanlon15-Jun-17 7:35
subeditorPete O'Hanlon15-Jun-17 7:35 
GeneralRe: Bind To DP On Control Pin
Kevin Marois15-Jun-17 7:39
professionalKevin Marois15-Jun-17 7:39 
GeneralRe: Bind To DP On Control Pin
Richard Deeming15-Jun-17 7:58
mveRichard Deeming15-Jun-17 7:58 
GeneralRe: Bind To DP On Control Pin
Kevin Marois15-Jun-17 8:03
professionalKevin Marois15-Jun-17 8:03 

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.