asp.net、Silverlight、Visifire

发布于 2024-11-08 05:36:44 字数 282 浏览 4 评论 0原文

我正在使用 Silverlight 和 Visifire 在 .net 框架上开发一个图表应用程序,它是一个 silverlight 应用程序,我在本地主机上运行它。 我已经通过 SQL Server 数据库连接到我的应用程序,并且运行良好,我要寻找的主要内容是,当我更改数据库内的数据时,它应该动态更改我的应用程序的图表值。

我尝试的是,我在网页中设置了页面刷新参数并更新了值,但整个应用程序重新出现。

那么,当我更改数据库中的值时,有什么方法可以并行更改图表值。

期待回复,

谢谢。

I am developing one chart application on .net framework by using Silverlight and Visifire, Its a silverlight application and I am running it on localhost.
I have connected through SQL server database to my application and it is running fine, The main thing that i am looking for is that, when i change data inside the database, It should dynamically change my application's chart values.

What I tried is, I set the page refreshing parameter in my web page and its updating the values also, but whole application is re-appearing.

So, Is there any way to change the chart value parallely as I change my values in database.

Looking forward for response,

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

余生一个溪 2024-11-15 05:36:44

您可以在 Silverlight 应用程序中使用“DispatcherTimer”,并在计时器的每个刻度事件上调用 UpdateChart()。查看下面的示例代码。

public Page()
{
    System.Windows.Threading.DispatcherTimer timer = new DispatcherTimer();
    timer.Interval = new TimeSpan(0, 0, 10); // 10 sec
    timer.Tick += new EventHandler(timer_Tick);
    timer.Start();
}

void timer_Tick(object sender, EventArgs e)
{
    UpdateChart();
}

希望这有帮助!

You can use "DispatcherTimer" in Silverlight application and call UpdateChart() on each tick event of the timer. Checkout the sample code below.

public Page()
{
    System.Windows.Threading.DispatcherTimer timer = new DispatcherTimer();
    timer.Interval = new TimeSpan(0, 0, 10); // 10 sec
    timer.Tick += new EventHandler(timer_Tick);
    timer.Start();
}

void timer_Tick(object sender, EventArgs e)
{
    UpdateChart();
}

Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文