Пример #1
0
        // This browses for a flat
        protected override string BrowseImage(string imagename)
        {
            string result;

            // Browse for texture
            result = FlatBrowserForm.Browse(this.ParentForm, imagename);
            if (result != null)
            {
                return(result);
            }
            else
            {
                return(imagename);
            }
        }
Пример #2
0
 public override void Browse(IWin32Window parent)
 {
     this.value = FlatBrowserForm.Browse(parent, this.value);
 }