Jump to content
LaunchBox Community Forums

Recommended Posts

Hi, I was creating a theme with the Community Theme Creator and then noticed there's no way to create an horizontal wall view.

What i was aiming was this kind of wheel with 2 or 3 rows that scrolls horizontally like NesicaXLive themes.

Am i doing something wrong or is there no actual way to do it?

8NQ9vy3.png

Edited by davidkan1996
Link to comment
Share on other sites

I read about that in the documentation but can't seem to make it work...

here's my wheel if you can help me notice what i'm doing wrong.


		<!-- Wheel -->
		<Grid x:Name="Wheel" HorizontalAlignment="Left" VerticalAlignment="Top" Visibility="Visible" Width="{Binding ElementName=Canvas,Path=ActualWidth,Converter={StaticResource ScalePropertyValueD},ConverterParameter=W;1720;1920}" Height="{Binding ElementName=Canvas,Path=ActualHeight,Converter={StaticResource ScalePropertyValueD},ConverterParameter=H;250;1080}" RenderTransformOrigin="0.5,0.5" Panel.ZIndex="270">

			<coverFlow:FlowControl x:Name="FlowControl" 
			Opacity="1.0" ImageType="Clear Logo" 
			HorizontalAlignment="Stretch" VerticalAlignment="Stretch" 
			CurveAmount="0" CameraZPosition="5.5" VisibleCount="20" Spacing="2" 
			ItemZPosition="1.0" SelectedItemZPosition="1.3" PageSize="22" 
			CameraYAngle="0" RenderTransformOrigin=".5,.5"
			Rows="2"
			Endless="true"
			CoverFactory="{Binding CoverFactory}" >
				<coverFlow:FlowControl.RenderTransform>
					<TransformGroup>
						<RotateTransform Angle="0" />
						<ScaleTransform ScaleX="1" ScaleY="1" />
						<SkewTransform AngleX="0" AngleY="0" />
					</TransformGroup>
				</coverFlow:FlowControl.RenderTransform>
			</coverFlow:FlowControl>
			
			<Grid.RenderTransform>
				<TransformGroup>
					<SkewTransform AngleX="0" AngleY="0" />
					<RotateTransform Angle="0" />
					<TranslateTransform X="{Binding ElementName=Canvas,Path=ActualWidth,Converter={StaticResource ScalePropertyValueD},ConverterParameter=X;100;1920}" Y="{Binding ElementName=Canvas,Path=ActualHeight,Converter={StaticResource ScalePropertyValueD},ConverterParameter=Y;710;1080}" />
				</TransformGroup>
			</Grid.RenderTransform>

		</Grid>

 

Link to comment
Share on other sites

You're using a cover factory instead of a FlowTemplate. Try something like this:
 

<coverFlow:FlowControl x:Name="FlowControl" Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Rows="3" ItemSpacing="0.05,0"
                       SelectedScale="1.5,1.5">
  <coverFlow:FlowControl.Camera>
    <OrthographicCamera Position="0,0,5" LookDirection="0,0,-1" NearPlaneDistance=".01" FarPlaneDistance="1000" Width="15"/>
  </coverFlow:FlowControl.Camera>
  <coverFlow:FlowControl.FlowTemplate>
    <DataTemplate>
      <coverFlow:FlowContext>
        <Border BorderThickness="30">
          <Border.Style>
            <Style TargetType="Border">
              <Setter Property="BorderBrush" Value="Transparent"/>
              <Setter Property="Opacity" Value=".2"/>
              <Style.Triggers>
                <DataTrigger Binding="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type coverFlow:FlowContext}}, Path=IsItemSelected}" Value="True">
                  <Setter Property="BorderBrush" Value="White"/>
                </DataTrigger>
                <DataTrigger Binding="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type coverFlow:FlowContext}}, Path=IsRowSelected}" Value="True">
                  <Setter Property="Opacity" Value="1"/>
                </DataTrigger>
              </Style.Triggers>
            </Style>
          </Border.Style>
          <coverFlow:FlowImage ImageType="Clear Logo"/>
        </Border>
      </coverFlow:FlowContext>
    </DataTemplate>
  </coverFlow:FlowControl.FlowTemplate>
</coverFlow:FlowControl>

 

  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...