コード例 #1
0
ファイル: PageTarget.cs プロジェクト: bijeshnath/ebookwriter
 public PageTarget(String argId, String argType, String argValue, NavLabel argNavLabel, Content argContent)
 {
     id = argId;
     type = argType;
     value = argValue;
     myNavLabel = argNavLabel;
     myContent = argContent;
 }
コード例 #2
0
ファイル: NavPoint.cs プロジェクト: bijeshnath/ebookwriter
 public NavPoint(int argPlayOrder, String argId, String argNavPointClass, NavLabel argLabel, Content argContent)
 {
     playOrder = argPlayOrder;
     id = argId;
     navPointclass = argNavPointClass;
     myNavLabel = argLabel;
     myContent = argContent;
 }
コード例 #3
0
        void ReleaseDesignerOutlets()
        {
            if (DateLabel != null)
            {
                DateLabel.Dispose();
                DateLabel = null;
            }

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

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

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

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

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

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

            if (TotalLabel != null)
            {
                TotalLabel.Dispose();
                TotalLabel = null;
            }
        }
コード例 #4
0
ファイル: NavTarget.cs プロジェクト: bijeshnath/ebookwriter
 public NavTarget(NavLabel argNavLabel, Content argContent)
 {
     myNavLabel = argNavLabel;
     myContent = argContent;
 }