partial void BtnVibrantControlsCaveatsBehindWindowClicked (NSButton sender)
		{
			var viewController = new VibrantControlsViewController ("VibrantControlsCaveatsBehindWindow") {
				Title = "Caveats Behind Window"
			};
			PresentViewControllerAsModalWindow (viewController);
		}
		partial void BtnVibrantColorsClicked (NSButton sender)
		{
			var viewController = new VibrantControlsViewController ("VibrantColorsViewController") {
				Title = "System Colors"
			};
			PresentViewControllerAsModalWindow (viewController);
		}
		partial void BtnMaskImageWindowClicked (NSButton sender)
		{
			var viewController = new VibrantControlsViewController ("MaskExampleViewController") {
				Title = "Masks"
			};
			PresentViewControllerAsModalWindow (viewController);
		}
		partial void BtnPerformanceExampleClicked (NSButton sender)
		{
			var viewController = new VibrantControlsViewController ("PerformanceExampleViewController") {
				Title = "Performance Example"
			};
			PresentViewControllerAsModalWindow (viewController);
		}
Exemple #5
0
        partial void BtnVibrantControlsCaveatsBehindWindowClicked(NSButton sender)
        {
            var viewController = new VibrantControlsViewController("VibrantControlsCaveatsBehindWindow")
            {
                Title = "Caveats Behind Window"
            };

            PresentViewControllerAsModalWindow(viewController);
        }
Exemple #6
0
        partial void BtnVibrantColorsClicked(NSButton sender)
        {
            var viewController = new VibrantControlsViewController("VibrantColorsViewController")
            {
                Title = "System Colors"
            };

            PresentViewControllerAsModalWindow(viewController);
        }
Exemple #7
0
        partial void BtnMaskImageWindowClicked(NSButton sender)
        {
            var viewController = new VibrantControlsViewController("MaskExampleViewController")
            {
                Title = "Masks"
            };

            PresentViewControllerAsModalWindow(viewController);
        }
Exemple #8
0
        partial void BtnPerformanceExampleClicked(NSButton sender)
        {
            var viewController = new VibrantControlsViewController("PerformanceExampleViewController")
            {
                Title = "Performance Example"
            };

            PresentViewControllerAsModalWindow(viewController);
        }