Ejemplo n.º 1
0
 public PageTarget(String argId, String argType, String argValue, NavLabel argNavLabel, Content argContent)
 {
     id = argId;
     type = argType;
     value = argValue;
     myNavLabel = argNavLabel;
     myContent = argContent;
 }
Ejemplo n.º 2
0
 public NavPoint(int argPlayOrder, String argId, String argNavPointClass, NavLabel argLabel, Content argContent)
 {
     playOrder = argPlayOrder;
     id = argId;
     navPointclass = argNavPointClass;
     myNavLabel = argLabel;
     myContent = argContent;
 }
Ejemplo n.º 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;
            }
        }
Ejemplo n.º 4
0
 public NavTarget(NavLabel argNavLabel, Content argContent)
 {
     myNavLabel = argNavLabel;
     myContent = argContent;
 }