Beispiel #1
0
 /// <summary>
 /// Configures the property editor</summary>
 /// <param name="gridControl">Grid control</param>
 /// <param name="controlInfo">Information about the control for the hosting service</param>
 protected virtual void Configure(out GridControl gridControl, out ControlInfo controlInfo)
 {
     gridControl = new GridControl();
     controlInfo = new ControlInfo(
         "Grid Property Editor".Localize(),
         "Edits selected object properties".Localize(),
         StandardControlGroup.Bottom, null,
         "https://github.com/SonyWWS/ATF/wiki/Property-Editing-in-ATF".Localize());
 }
Beispiel #2
0
 /// <summary>
 /// Configures the property editor</summary>
 /// <param name="gridControl">Grid control</param>
 /// <param name="controlInfo">Information about the control for the hosting service</param>
 protected virtual void Configure(out GridControl gridControl, out ControlInfo controlInfo)
 {
     gridControl = new GridControl();
     controlInfo = new ControlInfo(
         "Grid Property Editor", //Is the ID in the layout. We'll localize DisplayName instead.
         "Edits selected object properties".Localize(),
         StandardControlGroup.Bottom, null,
         "https://github.com/SonyWWS/ATF/wiki/Property-Editing-in-ATF".Localize())
     {
         DisplayName = "Grid Property Editor".Localize()
     };
 }