Hi, i copied all FlipView Control of your toolkit into my project. I have debugged both your sample and my sample i am getting
ElementScrollingHost =null
ElementItemsPresenter=null
In your sample your able to get.
Below method your where your assigned values:
public override void OnApplyTemplate()
{
_animator = null;
ItemsHost = null;
ItemsHostSize = new Size(double.NaN, double.NaN);
if (ElementItemsPresenter != null)
{
LayoutUpdated -= OnLayoutUpdated;
}
base.OnApplyTemplate();
ElementScrollingHost = GetTemplateChild(ElementScrollingHostName) as ScrollViewer;
ElementItemsPresenter = GetTemplateChild(ElementItemsPresenterName) as ItemsPresenter;
if (ElementItemsPresenter != null)
{
InitializeItemsHost();
if (ItemsHost == null)
{
LayoutUpdated += OnLayoutUpdated;
}
}
}
I am not getting why those values are null. sample running without error. but i am getting following output:
Hi, i copied all FlipView Control of your toolkit into my project. I have debugged both your sample and my sample i am getting ElementScrollingHost =null ElementItemsPresenter=null In your sample your able to get.
Below method your where your assigned values:
public override void OnApplyTemplate() { _animator = null; ItemsHost = null; ItemsHostSize = new Size(double.NaN, double.NaN);
I am not getting why those values are null. sample running without error. but i am getting following output: