
How can i do change a media in Windows Media Player component in .net without skipping, blacked form and jumping
I want change a media just like seeking(without skipping or black or jumping)
If telerik have a media player component show me, Please help me this is very critical for me!!
i need a media player component powerful than Windows Media Player, my program need transparency and change media fast and without blacking screen.
you think, i want create a game with a few avi movie in vb.net and i must control movie and fast change media......
what's you best idea in vb.net ????
Very very thanks!

protected override void SynchronizeProperties() { base.SynchronizeProperties(); Cars car = (Cars)Data.Value; this.Text = "<html><br><br><br><br><br><span style=\"color:#141718;font-size:14.5pt;\">" + car.Model + "</span>"; this.element1.Text = "<html><span style=\"color:#010102;font-size:10.5pt;font-family:Segoe UI Semibold;\">" + "ABS:" + (car.ABS ? "<span style=\"color:#13224D;font-family:Segoe UI;\">YES" : "<span style=\"color:#D71B0E;\">NO") + "</span>" + "<br>ESR:" + (car.ESR ? "<span style=\"color:#13224D;font-family:Segoe UI;\">YES" : "<span style=\"color:#D71B0E;\">NO") + "</span>" + "</span>"; this.TextAlignment = ContentAlignment.TopLeft; this.ImageAlignment = ContentAlignment.TopLeft; //this fixes issue from 001.png this.TextWrap = true; } private void listView_ItemDataBound(object sender, ListViewItemEventArgs e)
{
//comment this to fix last word showing
e.Item.Image = (Image)Resources.ResourceManager.GetObject(((Cars)e.Item.Value).ImageFileName);
}

Two things quickly.
Why has the forum link to UI for WinForms (http://www.telerik.com/forums/winforms) disappeared from the main Telerik Developer Forums page (http://www.telerik.com/forums) and why is it no longer accessible directly but this sub forum is available?
Also, UI for WinForms Q1 2016 (version 2016.1.112) has been released but it isn't yet available for download and installation in the Control Panel. I've been waiting for some fixes for a while now and really need this latest version to able to continue with the build and release of the next versions of my applications.
I assume things will be up and running soon but wanted to post this in case these haven't been picked up on yet.

Hi all,
is there a possibility to erase (or set it to color white) the small vertical line (see attached pictures) in a DropDownButtonElement-DropDownMenu?
Or is it the radMenuSeparatorItem?
FillPrimitive fp = burgermenu.DropDownButtonElement.FindDescendant<FillPrimitive>();
fp.ForeColor = Color.White;
fp.BackColor = Color.White;
fp.GradientStyle = Telerik.WinControls.GradientStyles.Solid;
didn't work.
Kind regards
Oliver
Public Sub ShowMenuShortCuts(ByVal AMenuItems As Telerik.WinControls.RadItemOwnerCollection) Dim i As Int32 = 0 While (i < AMenuItems.Count) Try CType(AMenuItems(i).Children(2).Children(0).Children(1).Children(0), Telerik.WinControls.Primitives.TextPrimitive).ShowKeyboardCues = True AddHandler CType(AMenuItems(i).Children(2).Children(0).Children(1).Children(0), Telerik.WinControls.Primitives.TextPrimitive).PropertyChanged, AddressOf MenuPropertyChanged If (TypeOf AMenuItems(i) Is myMenuItem) AndAlso (CType(AMenuItems(i), myMenuItem).Items.Count > 0) Then ShowMenuShortCuts(CType(AMenuItems(i), myMenuItem).Items) End If Catch 'Failure End Try i += 1 End WhileEnd SubPublic Sub MenuPropertyChanged(ByVal sender As Object, ByVal e As PropertyChangedEventArgs) Dim tPrimitive As Telerik.WinControls.Primitives.TextPrimitive tPrimitive = CType(sender, Telerik.WinControls.Primitives.TextPrimitive) If (e.PropertyName = "ShowKeyboardCues" AndAlso (Not tPrimitive.ShowKeyboardCues)) Then tPrimitive.ShowKeyboardCues = True End IfEnd Sub
Hi All,
i create new winform and add radRibbonBar, but whenever open the form, it automatically added a another, please see attach file.

When the datasource is set for a gridview with sorting applied, the first row in the Rows collection is selected rather than the first row in the ChildRows collection. This causes the gridview to scroll to the position of the first row in the datasource rather than the first displayed row in the gridview.
Steps to reproduce:
Set the datasource for the gridview
Sort the gridview
Set the datasource for the gridview again
The first row in the datasource will be selected and scrolled to, rather than the first displayed row.

