求一份转盘游戏的源码
像图上这样的,使用.net如何实现。。。求实现思路,,,本人flash不会!
------解决方案--------------------
用 WPF啊  
资料你先找找,
不行再给你找代码。
------解决方案--------------------
可以反编译flash啊,一般点击开始后就边转边获取结果,然后在慢慢停到结果上
------解决方案--------------------
接分来了,js当中的代码,改一下,轮盘游戏!
------解决方案--------------------
下面代码需要你修改下样式。
1,js               --把代码复制txt你 然后修改后缀为html
2.c# wpf
------解决方案--------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>js抽奖</title>
<style type="text/css">
*{ margin: 0; padding: 0; font-size:12px;}
body{ background-color: #2C1914;font-family:"宋体"; }
a img, ul, li { list-style: none; }
a{text-decoration:none; outline:none; font-size:12px;}
input, textarea, select, button { font-size: 100%;}
.abs{ position:absolute;}
.rel{ position:relative;}
.wrap{ min-height:1000px;}
.main{ height:718px; }
.con980{ width:980px; margin:0 auto;}
.header{ width:100%; height:50px;}  
.play{ background:url() no-repeat; width:980px; height:625px; padding:22px 0 0 21px;}
td{width:187px; height:115px; font-family:"微软雅黑"; background-color:#666; text-align:center; line-height:115px; font-size:80px; }
	.playcurr{ background-color:#F60;}
	.playnormal{ background-color:#666;}
	.play_btn{ width:480px; height:115px; display:block; background-color:#F60;border:0; cursor:pointer; font-family:"微软雅黑";  font-size:40px;}
	.play_btn:hover{ background-position:0 -115px;}
	.btn_arr{ left:255px; top:255px;}
   </style>
</head>
<body>
<div class="wrap">
      <div class="header"></div>
      <div class="main">
         <div class="con980">
             <div class="play rel">
                <p class="btn_arr abs"><input value="点击领奖" id="btn1" type="button" onclick="StartGame()" class="play_btn" ></p>
<table class="playtab" id="tb" cellpadding="0" cellspacing="1">
<tr>
   <td>1</td><td>2</td><td>3</td><td>4</td><td>5</td>
</tr>
<tr>
   <td>16</td><td></td><td></td><td></td><td>6</td>
</tr>
<tr>
   <td>15</td><td></td><td></td><td></td><td>7</td>
</tr>
<tr>
   <td>14</td><td></td><td></td><td></td><td>8</td>
</tr>
<tr>
   <td>13</td><td>12</td><td>11</td><td>10</td><td>9</td>
</tr>
</table>
           </div>
       </div>
    </div>
</div>
   <script type="text/javascript">   
    /*
     * 删除左右两端的空格
     */
    function Trim(str){
        return str.replace(/(^\s*)|(\s*$)/g, "");  
    }   
       /*
        * 定义数组
        */
       function GetSide(m,n){
           //初始化数组
           var arr = [];
           for(var i=0;i<m;i++){
               arr.push([]);