×

iFour Logo

Simplifying Visual State Manager with TargetName

Kapil Panchal - February 08, 2021

Listening is fun too.

Straighten your back and cherish with coffee - PLAY !

  • play
  • pause
  • pause
Simplifying Visual State Manager with TargetName

What is Visual State Manager?


The Visual State Manager (VSM) is a structured way to make some changes on the controls to the user interface from code, and the visual state manager is the concept of visual states. All the user interface is defined in XAML, so we can include visual state manager effects on the XAML. We can apply visual state manager effects on all the XAML controls to make unique controls. Let’s took an example of a Button, a button has different visual appearances like a button pressed, whether it’s disabled, or has input focus.

“CommonStates” is the visual state group named that is defined on the Visual State Manager. They have the following visual states:

  • “Normal”
  • “Selected”
  • “Focused”
  • “Disabled”

VisualElement is the base class for Page and View, and the visual state group only support the class those derived from VisualElement.

Triggers and visual state manager both are the same but the difference is, using trigger we can also change the Ui based on the events and property. But in visual state manager we can change the Ui based on states it is easy to use and their structure is less confusing.

Common States


In XAML, if the view is disabled, or normal, or has the input focus these are known as the common states.

            
            
            
            
                          
            
                          
            
                          
                      
                  
      
              

This is just an example of how we can use visual state manager. Visual state group is a common group state on that we can include pair of visual state. After that, we can define a setter property on the visual state. You can use the setter property with the visual state and inside the VisualState.Setter like the below,

            
            
            
            
            
            
                              
                          
            
            
            
                              
                          
            
            
            
                              
                          
                      
                  
      
              

Now, we can see a simple Entry example using a visual state manager.

            
    
            
            
            
            
            
            
            
            
                    
                
            
            
            
            
            
            
                    
                
            
            
            
                    
                
            
        
    


Here we can add Entry control with the visual state group and VisualState.Setter, inside VisualState.Setter we can add some other setter property to set the entry’s background color, font size, text color, and height.

In this example, we have created an entry for example when we enter some data they will change the entry’s height and color, and when we remove focus it will change again.


Output

 

Image: Entry with Visual State Manager

 

 

Image: Changed Entry Control

 

Image: Effect after mouse over

 

We can create an example with one entry control now and can create an example with three entry control with some conditions.

  

            
            
          
            

In this example, we can add three entry controls first entry control will be normal entry control, the second entry control will be disabled when we type something on the third entry control then the second entry control will be enabled and we can remove the text from the third entry control the second entry control will be disabled.


Output

 

Image: Multiple Entry Controls with Visual State Manager

 

Image: Entry control with some condition

 

Image: Enabled second entry control

 

After this example, we have created one more example with some conditions using the code-behind.

Looking for the Best Custom Software Development Company? Your Search ends here.


MainPage.Xaml



            
            
            
            
            
            
            
                  
              
            
            
            
            
                  
              
          
      
            

Mainpage.Xaml.cs
  using System;
  using System.Collections.Generic;
  using System.ComponentModel;
  using System.Linq;
  using System.Text;
  using System.Text.RegularExpressions;
  using System.Threading.Tasks;
  using Xamarin.Forms;
  namespace VisualState
  {
      public partial class MainPage : ContentPage
      {
          public MainPage()
          {
              InitializeComponent();
              Validation(false);
          }
          private void OnTextChanged(object sender, TextChangedEventArgs e)
          {
              bool isValid = Regex.IsMatch(e.NewTextValue, @"^[2-9]\d{2}-\d{3}-\d{4}$");
              Validation(isValid);
          }
          void Validation(bool isValid)
          {
              string VSM = isValid ? "Valid" : "Invalid";
              VisualStateManager.GoToState(stackLayout, VSM);
          }
      }
  }

In this example, we can set button visibility using visual state manager when the user doesn’t enter a valid number format the button will be disabled and user entered a valid number the button will be enabled.


Output

 

Image: Submit button disable

 

 

Image: Can’t start with 0 or 1

 

 

Image: Submit button enabled

 

Conclusion


In this blog, we have learned the visual state manager, which is a structured way to design control. Suppose we want to increase the height of an entry control when we type something on that. And we can also set the text color or entry color based on the conditions. Also, do that, change the color of entry control when control is focused.

Simplifying Visual State Manager with TargetName What is Visual State Manager? The Visual State Manager (VSM) is a structured way to make some changes on the controls to the user interface from code, and the visual state manager is the concept of visual states. All the user interface is defined in XAML, so we can include visual state manager effects on the XAML. We can apply visual state manager effects on all the XAML controls to make unique controls. Let’s took an example of a Button, a button has different visual appearances like a button pressed, whether it’s disabled, or has input focus. “CommonStates” is the visual state group named that is defined on the Visual State Manager. They have the following visual states: “Normal” “Selected” “Focused” “Disabled” VisualElement is the base class for Page and View, and the visual state group only support the class those derived from VisualElement. Triggers and visual state manager both are the same but the difference is, using trigger we can also change the Ui based on the events and property. But in visual state manager we can change the Ui based on states it is easy to use and their structure is less confusing. Common States In XAML, if the view is disabled, or normal, or has the input focus these are known as the common states. This is just an example of how we can use visual state manager. Visual state group is a common group state on that we can include pair of visual state. After that, we can define a setter property on the visual state. You can use the setter property with the visual state and inside the VisualState.Setter like the below, Now, we can see a simple Entry example using a visual state manager. Here we can add Entry control with the visual state group and VisualState.Setter, inside VisualState.Setter we can add some other setter property to set the entry’s background color, font size, text color, and height. Read More: What Is Xml Manifest In Office Add-in? In this example, we have created an entry for example when we enter some data they will change the entry’s height and color, and when we remove focus it will change again. Output   Image: Entry with Visual State Manager     Image: Changed Entry Control   Image: Effect after mouse over   We can create an example with one entry control now and can create an example with three entry control with some conditions. In this example, we can add three entry controls first entry control will be normal entry control, the second entry control will be disabled when we type something on the third entry control then the second entry control will be enabled and we can remove the text from the third entry control the second entry control will be disabled. Output   Image: Multiple Entry Controls with Visual State Manager   Image: Entry control with some condition   Image: Enabled second entry control   After this example, we have created one more example with some conditions using the code-behind. Looking for the Best Custom Software Development Company? Your Search ends here. See here MainPage.Xaml Mainpage.Xaml.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using Xamarin.Forms; namespace VisualState { public partial class MainPage : ContentPage { public MainPage() { InitializeComponent(); Validation(false); } private void OnTextChanged(object sender, TextChangedEventArgs e) { bool isValid = Regex.IsMatch(e.NewTextValue, @"^[2-9]\d{2}-\d{3}-\d{4}$"); Validation(isValid); } void Validation(bool isValid) { string VSM = isValid ? "Valid" : "Invalid"; VisualStateManager.GoToState(stackLayout, VSM); } } } In this example, we can set button visibility using visual state manager when the user doesn’t enter a valid number format the button will be disabled and user entered a valid number the button will be enabled. Output   Image: Submit button disable     Image: Can’t start with 0 or 1     Image: Submit button enabled   Conclusion In this blog, we have learned the visual state manager, which is a structured way to design control. Suppose we want to increase the height of an entry control when we type something on that. And we can also set the text color or entry color based on the conditions. Also, do that, change the color of entry control when control is focused.
Kapil Panchal

Kapil Panchal

A passionate Technical writer and an SEO freak working as a Technical Content Manager at iFour Technolab, USA. With extensive experience in IT, Services, and Product sectors, I relish writing about technology and love sharing exceptional insights on various platforms. I believe in constant learning and am passionate about being better every day.

Build Your Agile Team

Enter your e-mail address Please enter valid e-mail
Categories

Ensure your sustainable growth with our team

Talk to our experts
Sustainable
Sustainable
 

Blog Our insights

Quarkus vs Spring Boot - What’s Ideal for Modern App Development?
Quarkus vs Spring Boot - What’s Ideal for Modern App Development?

Spring Boot has long been a popular choice for developing custom Java applications. This is owing to its comprehensive features, impeccable security, and established ecosystem. Since...

Power BI Forecasting Challenges and Solutions
Power BI Forecasting Challenges and Solutions

Microsoft Power BI stands out for detailed data forecasting. By inspecting data patterns and using statistical models, Power BI provides a visual forecast of things to anticipate in...

Kotlin vs Java - Top 9 Differences CTOs Should Know
Kotlin vs Java - Top 9 Differences CTOs Should Know

Choosing the right programming language becomes crucial as it greatly influences the success of a software development project. When it comes to selecting the best programming language...