Ejemplo n.º 1
0
        public void ScrollViewEventSnapStartedEventArgsSnapEventInfo()
        {
            tlog.Debug(tag, $"ScrollViewEventSnapStartedEventArgsSnapEventInfo START");

            var testingTarget = new ScrollView.SnapStartedEventArgs();

            Assert.IsNotNull(testingTarget, "Can't create success object SnapStartedEventArgs");
            Assert.IsInstanceOf <ScrollView.SnapStartedEventArgs>(testingTarget, "Should be an instance of SnapStartedEventArgs type.");

            testingTarget.SnapEventInfo = new ScrollView.SnapEvent();
            Assert.IsNotNull(testingTarget.SnapEventInfo);

            tlog.Debug(tag, $"ScrollViewEventSnapStartedEventArgsSnapEventInfo END (OK)");
        }
Ejemplo n.º 2
0
 private void OnSnapStarted(object sender, ScrollView.SnapStartedEventArgs e)
 {
 }