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