void ReleaseDesignerOutlets ()
		{
			if (collectionView != null) {
				collectionView.Dispose ();
				collectionView = null;
			}

			if (collectionNumberSlider != null) {
				collectionNumberSlider.Dispose ();
				collectionNumberSlider = null;
			}
		}
Пример #2
0
        void ReleaseDesignerOutlets()
        {
            if (collectionView != null)
            {
                collectionView.Dispose();
                collectionView = null;
            }

            if (collectionNumberSlider != null)
            {
                collectionNumberSlider.Dispose();
                collectionNumberSlider = null;
            }
        }
        void ReleaseDesignerOutlets()
        {
            if (btnPrevTrack != null)
            {
                btnPrevTrack.Dispose();
                btnPrevTrack = null;
            }

            if (btnNextTrack != null)
            {
                btnNextTrack.Dispose();
                btnNextTrack = null;
            }

            if (btnWhatsPlaying != null)
            {
                btnWhatsPlaying.Dispose();
                btnWhatsPlaying = null;
            }

            if (lblAlbum != null)
            {
                lblAlbum.Dispose();
                lblAlbum = null;
            }

            if (lblArtist != null)
            {
                lblArtist.Dispose();
                lblArtist = null;
            }

            if (lblSong != null)
            {
                lblSong.Dispose();
                lblSong = null;
            }

            if (lblVolume != null)
            {
                lblVolume.Dispose();
                lblVolume = null;
            }

            if (sliderVolume != null)
            {
                sliderVolume.Dispose();
                sliderVolume = null;
            }
        }
Пример #4
0
 partial void setWidth(MonoMac.AppKit.NSSlider sender);
Пример #5
0
 partial void ColumnNumberSliderChange(MonoMac.AppKit.NSSlider sender);
 partial void SliderChanged(MonoMac.AppKit.NSSlider sender);
Пример #7
0
 partial void ColumnNumberSliderChange(MonoMac.AppKit.NSSlider sender)
 {
     Console.WriteLine("SliderChange {0}", sender.IntValue);
     ((NoteCollectionView)CollectionView).UpdateColumnCountBasedOnNumber(sender.IntValue);
 }
        void ReleaseDesignerOutlets()
        {
            if (btnPrevTrack != null) {
                btnPrevTrack.Dispose ();
                btnPrevTrack = null;
            }

            if (btnNextTrack != null) {
                btnNextTrack.Dispose ();
                btnNextTrack = null;
            }

            if (btnWhatsPlaying != null) {
                btnWhatsPlaying.Dispose ();
                btnWhatsPlaying = null;
            }

            if (lblAlbum != null) {
                lblAlbum.Dispose ();
                lblAlbum = null;
            }

            if (lblArtist != null) {
                lblArtist.Dispose ();
                lblArtist = null;
            }

            if (lblSong != null) {
                lblSong.Dispose ();
                lblSong = null;
            }

            if (lblVolume != null) {
                lblVolume.Dispose ();
                lblVolume = null;
            }

            if (sliderVolume != null) {
                sliderVolume.Dispose ();
                sliderVolume = null;
            }
        }