コード例 #1
0
ファイル: AppDelegate.cs プロジェクト: chamons/mac-samples-1
        public void GoTo(object sender, EventArgs e)
        {
            var item  = sender as NSMenuItem;
            var index = (NSNumber)(item.RepresentedObject);

            PresentationViewController.GoToSlide(index.Int32Value);
        }
コード例 #2
0
        public void GoTo(NSMenuItem item)
        {
            var index = (NSNumber)(item.RepresentedObject);

            PresentationViewController.GoToSlide(index.Int16Value);
        }