or
class TextureConverter : ResourceConverter { public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { Type[] tType = new Type[] { typeof(Texture), typeof(TextureAtlas) }; string[] tResource = ProjectManager.Singleton.CurrentProject.GetResourceNameListForType(tType, false); return new StandardValuesCollection(tResource); } }[Category("Settings Sprite")] [DisplayName("Texture")] [Description("Current Texture")] [TypeConverter(typeof(TextureConverter))] public virtual string Texture { get { return mTextureCBValues; } set { if (mTextureCBValues != value) { if (value == "") { ResetTexture(); } else { Item tTex = ProjectManager.Singleton.CurrentProject.GetResourceByName(value, true, Name); if (tTex is Texture) { mTextureCBValues = value; SetTexture(tTex as Texture); } else if (tTex is TextureAtlas) { mTextureCBValues = value; SetTextureAtlas(tTex as TextureAtlas); } else { SetStatus(Item.StatusState.ERROR, "Texture " + value + " is not found or invalid"); ResetTexture(); } } Refresh(); NotifyPropertyChanged(); } } }deleted wrong forum
protected override void CreateChildElements() { base.CreateChildElements(); this.stackLayout = new StackLayoutPanel(); this.stackLayout.Orientation = Orientation.Horizontal; this.contentElement = new LightVisualElement(); this.contentElement.StretchHorizontally = true; this.contentElement.MinSize = new Size(220, 2200); this.stackLayout.Children.Add(this.contentElement); imageElement = new clsBackDropItem(null,160,106); imageElement.ImageLayout = System.Windows.Forms.ImageLayout.Center; this.stackLayout.Children.Add(this.imageElement); this.buttonElement2 = new RadButtonElement(); this.buttonElement2.Text = "Button2"; this.stackLayout.Children.Add(this.buttonElement2); this.dd=new RadDropDownList(); this.stackLayout.Children.Add(this.dd); this.Children.Add(this.stackLayout);string sort = this.myRadGridView.SortDescriptors.Expression;Console.WriteLine(sort);string filter = this.myRadGridView.FilterDescriptors.Expression;Console.WriteLine(filter);Unit ID ASC([Unit ID] = 1)
or
RadControls_WinForms_2010_2_10_914_dev.exe file
i am unable to find for downloading.
help appreciated.
Thanks

