• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

How can we change the header font color of WPF group box

MrSeanKon

New Member
Joined
Nov 14, 2006
Messages
267 (0.04/day)
Location
Athens in love with Anna :)
Well check my attachments, I could not change!
But here I found this.
Hope it helps :)

Kreij you are right; the new programming avenue (WPF instead of classical form) is a big headache!!
 

Attachments

  • photo1.jpg
    photo1.jpg
    111 KB · Views: 1,826
  • photo2.jpg
    photo2.jpg
    75.8 KB · Views: 1,531
  • WpfApplication1.zip
    11.9 KB · Views: 286

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
What was stated in the link you posted worked for me.
Code:
<GroupBox Height="100" Width="200">
  <GroupBox.Header>
    <Label Foreground="Red">My Red GroupBox Header</Label>
  </GroupBox.Header>
</GroupBox>

Once you define the Header's Label in the above manner in code you then be able to click on it in the visual editor as see all of the Label's properties and will be able to use the property bar.
 

MrSeanKon

New Member
Joined
Nov 14, 2006
Messages
267 (0.04/day)
Location
Athens in love with Anna :)
But if we add two buttons for example something is going mystery and I am getting :mad: :mad:
Check the simple WPF programs in attachment.
Damn many headaches cos WPF during the first days....
 

Attachments

  • Code.zip
    24.9 KB · Views: 289

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
I didn't run the code and you didn't really explain what was not exactly working, but it looks like you need to put the buttons inside the groupbox
Code:
<GroupBox ...>
   <GroupBox.Header ...>
      <Whatever ....>
   </GroupBox.Header>
   <Button ...></Button>
   <Button ...></Button>
</GroupBox>
 

FordGT90Concept

"I go fast!1!11!1!"
Joined
Oct 13, 2008
Messages
26,259 (4.63/day)
Location
IA, USA
System Name BY-2021
Processor AMD Ryzen 7 5800X (65w eco profile)
Motherboard MSI B550 Gaming Plus
Cooling Scythe Mugen (rev 5)
Memory 2 x Kingston HyperX DDR4-3200 32 GiB
Video Card(s) AMD Radeon RX 7900 XT
Storage Samsung 980 Pro, Seagate Exos X20 TB 7200 RPM
Display(s) Nixeus NX-EDG274K (3840x2160@144 DP) + Samsung SyncMaster 906BW (1440x900@60 HDMI-DVI)
Case Coolermaster HAF 932 w/ USB 3.0 5.25" bay + USB 3.2 (A+C) 3.5" bay
Audio Device(s) Realtek ALC1150, Micca OriGen+
Power Supply Enermax Platimax 850w
Mouse Nixeus REVEL-X
Keyboard Tesoro Excalibur
Software Windows 10 Home 64-bit
Benchmark Scores Faster than the tortoise; slower than the hare.
Highly recommend putting some kind of container (e.g. a Grid) in the GroupBox instead of having the buttons land where they may.
 

MrSeanKon

New Member
Joined
Nov 14, 2006
Messages
267 (0.04/day)
Location
Athens in love with Anna :)
It is better to open the code in Visual Studio (when you have free time) and you will understand easily what is going mystic
But let me to explain you right now.
I define a groupbox which has a header and two buttons inside (button_EN & button_GR). Pressing a button translates the controls of WPF form from English to Greek and vice versa (buttonEN_Click & buttonGR_Click events).
If the main XMAL file is this:

Code:
<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Header's color and font change" Height="150" Width="300" ResizeMode="NoResize">
    <Grid>
        <GroupBox Name="grouplang" BorderThickness="3" Margin="20,10,30,20">
            <GroupBox.Header>
                <TextBlock FontSize="14" Foreground="Green" FontWeight="Bold" FontFamily="Times New Roman">Language</TextBlock>
            </GroupBox.Header>
        </GroupBox>
        <Button Content="Ελληνικά" Height="23" HorizontalAlignment="Left" Margin="50,50,0,0" Name="buttonGR" VerticalAlignment="Top" Width="75" Click="buttonGR_Click" />
        <Button Content="English" Height="23" HorizontalAlignment="Left" Margin="150,50,0,0" Name="buttonEN" VerticalAlignment="Top" Width="75" Click="buttonEN_Click" />
    </Grid>
</Window>

after pressing a button damn header's color & font's size/family changes....
Adding some definitions for TextBlock only the color changes (font family & size not).

Code:
<Window x:Class="WpfApplication2.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Here only the color changes" Height="150" Width="300" ResizeMode="NoResize">
    <Grid>
        <GroupBox Name="grouplang" BorderThickness="3" FontSize="14" Foreground="Green" FontWeight="Bold" FontFamily="Times New Roman" Margin="20,10,30,20">
            <GroupBox.Header>
                <TextBlock FontSize="14" Foreground="Green" FontWeight="Bold" FontFamily="Times New Roman">Language</TextBlock>
            </GroupBox.Header>
        </GroupBox>
        <Button Content="Ελληνικά" Height="23" HorizontalAlignment="Left" Margin="50,50,0,0" Name="buttonGR" VerticalAlignment="Top" Width="75" Click="buttonGR_Click" />
        <Button Content="English" Height="23" HorizontalAlignment="Left" Margin="150,50,0,0" Name="buttonEN" VerticalAlignment="Top" Width="75" Click="buttonEN_Click" />
    </Grid>
</Window>

Thus my question is how can I access groupbox's header color during execution adding the necessary commands in C#?
For WF case it is simple because WF design is based on C#.
 

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
Sorry, Sean. I didn't have time to dig into it father this morning as I had to leave for work. I will poke around with it when I get home tonight.
 

MrSeanKon

New Member
Joined
Nov 14, 2006
Messages
267 (0.04/day)
Location
Athens in love with Anna :)
OK don't worry; take your time!
But I have to continue a bit....
Well as I try to be familiar with this new field (WPF) the problem is inside XAML commands.
Pressing a button groupbox's header color is reset to the default value (blue).
Thus we have to add something equivalent in C#.
For example look the photo. It is a conversion from XAML to C#.
I am seeking to MSDN forums to find a small part of code but I have not found yet.
 

Attachments

  • jh.jpg
    jh.jpg
    69.4 KB · Views: 890

Kreij

Senior Monkey Moderator
Joined
Feb 6, 2007
Messages
13,817 (2.20/day)
Location
Cheeseland (Wisconsin, USA)
Sorry for the delay, I'm really busy lately.

The reason you are having problems is that you are modifying the header in the button events instead of the TextBlock, so basically you are saying "replace the TextBlock with this header content." Since you are not specifying any font or color characteristics it is using the system default.

Give the TextBlock a name, and then in your button events change the text by using textBlockName.Text="Language" (or the Greek equivalent). This will change the text in the TextBlock but not any of its other properties.
 

MrSeanKon

New Member
Joined
Nov 14, 2006
Messages
267 (0.04/day)
Location
Athens in love with Anna :)
The photo shows what Kreij means.
Thanks buddy!
I could not think this solution!
I got many times in mess and was very angry with WPF programming. But I must overtake the problems!

As we live we will learn Socrates
 

Attachments

  • jh1.png
    jh1.png
    24.2 KB · Views: 1,144
Top