Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Task - Binding Event Handlers to Events | Interactive GUI
Advanced C# with .NET

bookTask - Binding Event Handlers to Events

You can download the base project by cloning the Github Repository.

The XAML file has 3 elements:

  • "mainLabel", representing a Label, and text set to "Hello World".
  • "sizeSlider", representing a Slider, with Minimum and Maximum values set to 10 and 100 respectively. The default value is 10.
  • "setSizeBtn", representing a Button.

Your task is to bind the button's Clicked event handler to an event handler method which sets the FontSize property of the label to the value of the slider.

You only have to modify the C# file.

In summary, you will have to write the code for:

  • A new method called SetSize and it should have the same signature as the EventHandler.
  • The method should set the FontSize property equal to the Value property of the slider.
  • Adding the SetSize method to the Clicked event handler of the button element.

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 2. Kapitel 4

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

Awesome!

Completion rate improved to 3.7

bookTask - Binding Event Handlers to Events

Svep för att visa menyn

You can download the base project by cloning the Github Repository.

The XAML file has 3 elements:

  • "mainLabel", representing a Label, and text set to "Hello World".
  • "sizeSlider", representing a Slider, with Minimum and Maximum values set to 10 and 100 respectively. The default value is 10.
  • "setSizeBtn", representing a Button.

Your task is to bind the button's Clicked event handler to an event handler method which sets the FontSize property of the label to the value of the slider.

You only have to modify the C# file.

In summary, you will have to write the code for:

  • A new method called SetSize and it should have the same signature as the EventHandler.
  • The method should set the FontSize property equal to the Value property of the slider.
  • Adding the SetSize method to the Clicked event handler of the button element.

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 2. Kapitel 4
some-alt