[Gui.Design.DisplayName("my param")]
public int myPeriod {
get; set;
}
So, was there an update in NT7? or what's difference if using :
[Gui.Design.DisplayName("my param")]
public int myPeriod {
get { return xyz; } set { xyz= value; }
}
private int xyz = 4;

Comment