Question: Setting Opacity 1.0 on Listview

I have seen some examples of yours, you set Opacity of SfLisview as below. is there any specific reason or not neccessary. 


 public MainPage()
        {
            InitializeComponent();
          
            this.PropertyChanged += Swiping_PropertyChanged;          
      
        }


  private void Swiping_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
        {
            if (e.PropertyName == "Width")
            {
                sfListView.Opacity = 1.0;
            }
        }

1 Reply

MK Muthu Kumaran Gnanavinayagam Syncfusion Team March 15, 2018 01:16 PM UTC

Hi Emil, 

We would like to let you know that it is not necessary to set the Opacity value as ‘1’(default value) for SfListView. Maybe we have customized the opacity value based on the requirement in that sample. 
  
Regards, 
G.Muthu kumaran. 


Loader.
Up arrow icon