c#中关于 flash和数据库问题

来源:百度知道 编辑:UC知道 时间:2024/07/04 12:12:57
我想把好几个flash放到数据库中然后 选择下拉菜单 选择flash名字就会在控件中播放~ 具体怎么做 我是初学~

//app.config

<?xml version="1.0" encoding="utf-8" ?>

<configuration>

  <appSettings>

    <add key="flash1" value="1.swf"/>

    <add key="flash2" value="2.swf"/>

    <add key="flash3" value="3.swf"/>

  </appSettings>

</configuration>

///Form1.cs

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Text;

using System.Windows.Forms;

namespace fei_1586688

{

    public partial class Form1 : Form

    {

     &n