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

Opacity gone after rearranging

1 Answer 57 Views
TileView
This is a migrated thread and some comments may be shown as answers.
Jan
Top achievements
Rank 1
Jan asked on 20 Jun 2014, 09:50 AM
After moving a tile around, the opacity setting seems to be reset to 1.0. Please see this simple example. Did I miss something obvious?

<Window x:Class="TileTest.MainWindow"
        Title="MainWindow" Height="350" Width="525"
        Background="Orange">
    <Grid>
        <telerik:RadTileView RowsCount="2" Margin="40">
            <telerik:RadTileViewItem Header="Item1" Background="Black" Opacity="0.2">
                <TextBlock Text="Item2 Content"/>
            </telerik:RadTileViewItem>
            <telerik:RadTileViewItem Header="Item2" Background="Black" Opacity="0.3">
                <TextBlock Text="Item2 Content"/>
            </telerik:RadTileViewItem>
            <telerik:RadTileViewItem Header="Item3" Background="Black" Opacity="0.4">
                <TextBlock Text="Item3 Content"/>
            </telerik:RadTileViewItem>
            <telerik:RadTileViewItem Header="Item4" Background="Black" Opacity="0.5">
                <TextBlock Text="Item3 Content"/>
            </telerik:RadTileViewItem>
            <telerik:RadTileViewItem Header="Item5" Background="Black" Opacity="0.6">
                <TextBlock Text="Item3 Content"/>
            </telerik:RadTileViewItem>
            <telerik:RadTileViewItem Header="Item6" Background="Black" Opacity="0.7">
                <TextBlock Text="Item3 Content"/>
            </telerik:RadTileViewItem>
            <telerik:RadTileViewItem Header="Item7" Background="Black" Opacity="1">
                <TextBlock Text="Item3 Content"/>
            </telerik:RadTileViewItem>
        </telerik:RadTileView>
    </Grid>
</Window>

1 Answer, 1 is accepted

Sort by
0
Lance | Manager Technical Support
Telerik team
answered on 23 Jun 2014, 01:54 PM
Hello Jan,

Thank you for bringing this to our attention, I have replicated the behavior and the developers are working on a fix now.

In the meantime, you can use the TileDragStarted and TileDragEnded event to persist the tile's opacity. I have written an example application using your code (attached) that demonstrates the workaround.

Thank you for your patience as we work to resolve this issue and thank you for choosing Telerik.

Regards,
Lance
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
TileView
Asked by
Jan
Top achievements
Rank 1
Answers by
Lance | Manager Technical Support
Telerik team
Share this question
or