This is a migrated thread and some comments may be shown as answers.

I want to Show RadTileViewItem subsequently!!

2 Answers 44 Views
TileView
This is a migrated thread and some comments may be shown as answers.
Minseok Bang
Top achievements
Rank 1
Minseok Bang asked on 12 Nov 2009, 11:57 PM
source is here
//---------------------------------------------------------------------------------------------------------
 void RadTileView1_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            Random rd = new Random();

            RadTileView1.MaximizedItem = RadTileView1.Items[rd.Next(0, 5)]; --> this part is very doubtful!!
        }

//---------------------------------------------------------------------------------------------------------
Click any Items,
randomly Show the Item in LargeContent.
I implement above source,
first click that's okay
a Item is Shown in LargeContent
but after second Click, Items is shown unexpectedly

I think that is bug or my source is Wrong!

Help!!!

2 Answers, 1 is accepted

Sort by
0
Tihomir Petkov
Telerik team
answered on 16 Nov 2009, 06:15 PM
Hi Minseok,

The MouseLeftButtonDown event is not very reliable because most controls handle it internally. Can you please explain the scenario you are after so that I can try to suggest a better approach?

Best wishes,
Tihomir Petkov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Minseok Bang
Top achievements
Rank 1
answered on 16 Nov 2009, 10:54 PM
HI,
Thanks to your appreciate,

I find solution!

Just Add Line in XAML

That is code bellow

MaximizeMode="One"

Have a Good Code dat :)
Tags
TileView
Asked by
Minseok Bang
Top achievements
Rank 1
Answers by
Tihomir Petkov
Telerik team
Minseok Bang
Top achievements
Rank 1
Share this question
or