c# - 如何在轮盘赌中将球停在特定数字

标签 c# wpf

我正在使用 WPF 和 C#.NET 创建一个轮盘游戏。我成功地旋转了方向盘,但我无法获得球停止位置的具体值。

任何人都可以帮助我应用什么样的逻辑来获得两者的值(value)

我已经使用 Expression Blend(下面的代码)创建了基本动画,我怎样才能获得球停止时的值。

 <Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="demo.MainWindow"
x:Name="Window"
Title="MainWindow"
Width="640" Height="480">
<Window.Resources>
    <Storyboard x:Key="spinWheel">
        <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)" Storyboard.TargetName="canvas">
            <EasingDoubleKeyFrame KeyTime="0" Value="-0.056"/>
            <EasingDoubleKeyFrame KeyTime="0:0:1" Value="-89.871"/>
            <EasingDoubleKeyFrame KeyTime="0:0:2" Value="-179.468"/>
            <EasingDoubleKeyFrame KeyTime="0:0:3" Value="-269.405"/>
            <EasingDoubleKeyFrame KeyTime="0:0:4" Value="-360.488"/>
        </DoubleAnimationUsingKeyFrames>
        <DoubleAnimationUsingPath Duration="0:0:3.96" Source="X" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.X)" Storyboard.TargetName="ellipse">
            <DoubleAnimationUsingPath.PathGeometry>
                <PathGeometry Figures="M39.5,115 C39.5,218.55339 -44.446609,302.5 -148,302.5 C-251.55339,302.5 -335.5,218.55339 -335.5,115 C-335.5,11.446609 -251.55339,-72.5 -148,-72.5 C-44.446609,-72.5 39.5,11.446609 39.5,115 z"/>
            </DoubleAnimationUsingPath.PathGeometry>
        </DoubleAnimationUsingPath>
        <DoubleAnimationUsingPath Duration="0:0:3.96" Source="Y" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.Y)" Storyboard.TargetName="ellipse">
            <DoubleAnimationUsingPath.PathGeometry>
                <PathGeometry Figures="M39.5,115 C39.5,218.55339 -44.446609,302.5 -148,302.5 C-251.55339,302.5 -335.5,218.55339 -335.5,115 C-335.5,11.446609 -251.55339,-72.5 -148,-72.5 C-44.446609,-72.5 39.5,11.446609 39.5,115 z"/>
            </DoubleAnimationUsingPath.PathGeometry>
        </DoubleAnimationUsingPath>
    </Storyboard>
</Window.Resources>
<Window.Triggers>
    <EventTrigger RoutedEvent="FrameworkElement.Loaded">
        <BeginStoryboard Storyboard="{StaticResource spinWheel}"/>
    </EventTrigger>
</Window.Triggers>

<Grid x:Name="LayoutRoot">
    <Canvas x:Name="canvas" Margin="22,62,248,26" RenderTransformOrigin="0.5,0.5">
        <Canvas.RenderTransform>
            <TransformGroup>
                <ScaleTransform/>
                <SkewTransform/>
                <RotateTransform/>
                <TranslateTransform/>
            </TransformGroup>
        </Canvas.RenderTransform>
        <Ellipse x:Name="ellipse1" Fill="#FFF4F4F5" Stroke="Black" Height="354" Width="354"/>
        <Path Data="M308,44 L308,394.5" Fill="#FFF4F4F5" Stretch="Fill" Stroke="Black" Width="1" Height="351.5" Canvas.Left="179" Canvas.Top="1"/>
        <Path Data="M144,240 L495.5,240" Fill="#FFF4F4F5" Height="1" Stretch="Fill" Stroke="Black" Canvas.Left="1" Canvas.Top="176.5" Width="352.5"/>
        <TextBlock x:Name="one" Height="88" TextWrapping="Wrap" Text="1" Width="72" FontSize="64" Canvas.Left="75" Canvas.Top="64.5"/>
        <TextBlock x:Name="two" Height="88" TextWrapping="Wrap" Text="2" Width="72" FontSize="64" Canvas.Left="219" Canvas.Top="64.5"/>
        <TextBlock x:Name="three" Height="88" TextWrapping="Wrap" Text="3" Width="72" FontSize="64" Canvas.Left="219" Canvas.Top="200.5"/>
        <TextBlock x:Name="four" Height="88" TextWrapping="Wrap" Text="4" Width="72" FontSize="64" Canvas.Left="75" Canvas.Top="200.5"/>
    </Canvas>
    <Ellipse x:Name="ellipse" Fill="#FFFF2300" HorizontalAlignment="Right" Height="24" Margin="0,112,264,0" Stroke="Black" VerticalAlignment="Top" Width="24" RenderTransformOrigin="0.5,0.5">
        <Ellipse.RenderTransform>
            <TransformGroup>
                <ScaleTransform/>
                <SkewTransform/>
                <RotateTransform/>
                <TranslateTransform/>
            </TransformGroup>
        </Ellipse.RenderTransform>
    </Ellipse>
</Grid>

最佳答案

在 Storyboard上添加事件处理程序

    <Storyboard x:Key="spinWheel" Completed="Storyboard_Completed">

为旋转变换添加名称

    <RotateTransform x:Name="wheelAngle" />

在后面的代码中做一些数学运算,计算出球来自 wheelAngle.AngleballAngle.Angle 的位置。

关于c# - 如何在轮盘赌中将球停在特定数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9515248/

相关文章:

c# - 如何在 asp.net 中将 RDLC 报告导出为 .xlsx 格式?

c# - WPF 解析绑定(bind)表达式

c# - 在修改 C# WPF 应用程序中的绑定(bind)属性之前,如何确保我与 UI 同步以基于绑定(bind)更改样式?

c# - 命名 BackgroundWorker

c# - MVVM + Reactive + WCF 回调

C# WPF 内容切换

c# - 处理异步任务时,使用await 与使用ContinueWith 有何不同?

c# - Visual Studio 2017 RC - C# UWP 项目 - 无法创建类

C# Windows 服务不运行

c# - 从参数化构造函数调用默认构造函数