/// <summary>
 /// Assigns the section property to an object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <param name="section">The the section property assigned to the object.</param>
 protected void setSection(IChangeableSection app, T section)
 {
     app.SetSection(Name, section.Name);
     _sectionName  = section.Name;
     _crossSection = section;
 }
Пример #2
0
 /// <summary>
 /// Assigns the section property to a frame object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <param name="propertyName">The name of the section property assigned to the frame object.</param>
 protected void setSection(IChangeableSection app, string propertyName)
 {
     app.SetSection(Name, propertyName);
 }