HI Team,
I am working on SFExpander with SFListView. My scenario is to implement the SFExpander inside the SFListView for that I implemented code with ExtendedExpander also but the expander is not Opening the Content Fully.
The user wants to click two times to open the content fully(some times only this issue occurs).
I took the screenshots and attaching to it with the sample also.
I tried to implement the below link code to perform Expander scrolling.
but it is also not working can you please check it and let me know what is the problem on it.
I attached the zip file please find the attachment
Thank you.
|
…
<local:ExtendedExpander.Content>
<pancake:PancakeView CornerRadius="0,0,20,20" BackgroundColor="Gray">
<Grid RowDefinitions="40,40,40,40,40" Padding="10" >
<Label />
…
|
|
private bool isExpanded;
public bool IsExpanded
{
get { return this.isExpanded; }
set
{
this.isExpanded = value;
this.RaisedOnPropertyChanged("IsExpanded");
}
} |