当前位置: 首页>>代码示例>>C#>>正文


C# UIKit.UILabel类代码示例

本文整理汇总了C#中MonoTouch.UIKit.UILabel的典型用法代码示例。如果您正苦于以下问题:C# MonoTouch.UIKit.UILabel类的具体用法?C# MonoTouch.UIKit.UILabel怎么用?C# MonoTouch.UIKit.UILabel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MonoTouch.UIKit.UILabel类属于命名空间,在下文中一共展示了MonoTouch.UIKit.UILabel类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ReleaseDesignerOutlets

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

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

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

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

			if (ContentConstraint != null) {
				ContentConstraint.Dispose ();
				ContentConstraint = null;
			}
		}
开发者ID:nelsonnan,项目名称:CodeHub,代码行数:27,代码来源:GistCellView.designer.cs

示例2: ReleaseDesignerOutlets

 void ReleaseDesignerOutlets()
 {
     if (HelloLabel != null) {
         HelloLabel.Dispose ();
         HelloLabel = null;
     }
 }
开发者ID:vpalivela,项目名称:presentations,代码行数:7,代码来源:HelloWorldViewController.designer.cs

示例3: ReleaseDesignerOutlets

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

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

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

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

            if (DateLabel != null) {
                DateLabel.Dispose ();
                DateLabel = null;
            }
        }
开发者ID:Valik,项目名称:HashBot,代码行数:27,代码来源:TweetScreenController.designer.cs

示例4: ReleaseDesignerOutlets

		void ReleaseDesignerOutlets ()
		{
			if (DisplayText != null) {
				DisplayText.Dispose ();
				DisplayText = null;
			}
		}
开发者ID:TobyNijman,项目名称:MvxSlidingPanels.Touch,代码行数:7,代码来源:RightPanelView.designer.cs

示例5: ReleaseDesignerOutlets

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

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

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

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

            if (Favorite != null) {
                Favorite.Dispose ();
                Favorite = null;
            }
        }
开发者ID:jorik041,项目名称:CrossBar,代码行数:27,代码来源:BeerView.designer.cs

示例6: ReleaseDesignerOutlets

 void ReleaseDesignerOutlets()
 {
     if (Heading != null) {
         Heading.Dispose ();
         Heading = null;
     }
 }
开发者ID:GrimmRanger,项目名称:FGUtils,代码行数:7,代码来源:MainMenuRow.designer.cs

示例7: ReleaseDesignerOutlets

 void ReleaseDesignerOutlets()
 {
     if (labelLastCommand != null) {
         labelLastCommand.Dispose ();
         labelLastCommand = null;
     }
 }
开发者ID:Redth,项目名称:EggsToGo,代码行数:7,代码来源:EggsToGo_Sample_iOSViewController.designer.cs

示例8: ReleaseDesignerOutlets

 void ReleaseDesignerOutlets()
 {
     if (timerDisplay != null) {
         timerDisplay.Dispose ();
         timerDisplay = null;
     }
 }
开发者ID:vkz,项目名称:SampleProjectForXamarinIos,代码行数:7,代码来源:TimerViewController.designer.cs

示例9: ReleaseDesignerOutlets

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

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

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

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

            if (ButtonPlay != null) {
                ButtonPlay.Dispose ();
                ButtonPlay = null;
            }
        }
开发者ID:valryon,项目名称:pixpuzzle,代码行数:27,代码来源:PuzzleListDetailViewController.designer.cs

示例10: ReleaseDesignerOutlets

 void ReleaseDesignerOutlets()
 {
     if (distanceLabel != null) {
         distanceLabel.Dispose ();
         distanceLabel = null;
     }
 }
开发者ID:harryxiaxia,项目名称:ibeaconDemo,代码行数:7,代码来源:ProximityDemoViewController.designer.cs

示例11: ReleaseDesignerOutlets

 void ReleaseDesignerOutlets()
 {
     if (speakerNameLabel != null) {
         speakerNameLabel.Dispose ();
         speakerNameLabel = null;
     }
 }
开发者ID:akeresztesgh,项目名称:tekconf,代码行数:7,代码来源:SpeakerDetailViewController.designer.cs

示例12: ReleaseDesignerOutlets

		void ReleaseDesignerOutlets ()
		{
			if (ResultLabel != null) {
				ResultLabel.Dispose ();
				ResultLabel = null;
			}
		}
开发者ID:joshearl,项目名称:Xamarin.iOS-AlertAsyncSample,代码行数:7,代码来源:AlertAsyncSampleViewController.designer.cs

示例13: ReleaseDesignerOutlets

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

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

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

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

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

            if (m_interest2Label != null) {
                m_interest2Label.Dispose ();
                m_interest2Label = null;
            }
        }
开发者ID:chevonc,项目名称:SayHiMono,代码行数:32,代码来源:UserSummaryViewController.designer.cs

示例14: ReleaseDesignerOutlets

 void ReleaseDesignerOutlets()
 {
     if (dataLabel != null) {
         dataLabel.Dispose ();
         dataLabel = null;
     }
 }
开发者ID:BishoyDemian,项目名称:RememberMyTirp,代码行数:7,代码来源:DataViewController.designer.cs

示例15: ReleaseDesignerOutlets

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

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

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

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

			if (filterButton != null) {
				filterButton.Dispose ();
				filterButton = null;
			}
		}
开发者ID:Securecom,项目名称:Securecom-Messaging-iOS,代码行数:27,代码来源:ContactListCell.designer.cs


注:本文中的MonoTouch.UIKit.UILabel类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。