Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 569819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:20:09+00:00 2026-05-13T13:20:09+00:00

This is my XAML: <TextBlock Name=SeverityText Grid.Column=1 Grid.Row=0 Foreground=Red> <TextBlock.Triggers> <DataTrigger Binding={Binding Path=Severity}> <DataTrigger.Value>

  • 0

This is my XAML:

<TextBlock Name="SeverityText"
           Grid.Column="1"
           Grid.Row="0"
           Foreground="Red">
    <TextBlock.Triggers>

        <DataTrigger Binding="{Binding Path=Severity}">
            <DataTrigger.Value>
                <sm:Severity>Warning</sm:Severity>
            </DataTrigger.Value>
            <Setter TargetName="SeverityText"
                    Property="Foreground"
                    Value="Yellow" />
        </DataTrigger>
                 <DataTrigger Binding="{Binding Path=Severity}">
            <DataTrigger.Value>
                <sm:Severity>Information</sm:Severity>
            </DataTrigger.Value>
            <Setter TargetName="SeverityText"
                    Property="Foreground"
                    Value="White" />
        </DataTrigger>


    </TextBlock.Triggers>
    <TextBlock>Severity:</TextBlock>
    <TextBlock Text="{Binding Path=Severity}" />
</TextBlock>

This is my error message:

Cannot find the static member ‘ForegroundProperty’ on the type ‘ContentPresenter’.

sm:Severity is an enumeration I imported.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T13:20:09+00:00Added an answer on May 13, 2026 at 1:20 pm

    Your triggers and setters need to be defined in a style, rather than on the TextBlock directly:

    <TextBlock>
        <TextBlock.Style>
            <Style TargetType="TextBlock">
                <Style.Triggers>
    
                   <DataTrigger Binding="{Binding Severity}"> 
                       <DataTrigger.Value> 
                           <sm:Severity>Warning</sm:Severity> 
                       </DataTrigger.Value> 
                       <Setter TargetName="SeverityText" 
                               Property="Foreground" 
                               Value="Yellow" /> 
                   </DataTrigger>
    
                </Style.Triggers>
            </Style>
        </TextBlock.Style>
    </TextBlock>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given this XAML: <StackPanel Orientation=Horizontal Grid.Row=1 Grid.Column=0 Margin=5> How can I assign the Grid.Row
I'm using this XAML: <Border x:Name=border1 Grid.Row=1> <toolkit:HeaderedContentControl Header=HeaderedContentControl HorizontalContentAlignment=Stretch VerticalContentAlignment=Stretch MaxWidth={Binding ActualWidth, ElementName=border1}
I have xaml that lookes like this <ListBox> <ListBox.ItemTemplate> <DataTemplate> <StackPanel> <TextBlock Text={Binding Name}
currently I have this in my XAML: <phone:PhoneApplicationPage.Resources> <toolkit:RelativeTimeConverter x:Key=RelativeTimeConverter/> </phone:PhoneApplicationPage.Resources> .... <TextBlock x:Name=txtTimeAdded
I have XAML: <TextBlock Text=Param 1 name Margin=6,6,0,0></TextBlock> <TextBox Text={Binding Param1Value, UpdateSourceTrigger=PropertyChanged} Margin=6,6,0,0></TextBox> <TextBlock
XAML: <navigation:Page ... Title={Binding Name}> C# public TablePage() { this.DataContext = new Table() {
I have the following Xaml in a Window ( ArtistInfo ): <Grid> <TextBlock Text={Binding
So I have this Xaml inside a ListBox Item Template: <ListBox.ItemTemplate> <DataTemplate> <Grid Height=22
this is my xaml code. <sdk:DataGrid x:Name=dgMarks CanUserResizeColumns=False SelectionMode=Single AutoGenerateColumns=False VerticalAlignment=Top IsReadOnly=True Margin=13,44,0,0 RowDetailsVisibilityChanged=dgMarks_RowDetailsVisibilityChanged
My typical form with Grid look like this in XAML: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width=Auto></ColumnDefinition>

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.