程序在运行逻辑之前退出

时间:2017-01-01 19:21:51

标签: f#

我在这个MSDN页面上玩了一些图表示例,但似乎应用程序弹出一个图表窗口,然后在渲染实际图表之前立即退出。以下是我尝试在背景中检索标题'检索数据的示例。

open System
open System.Threading
open System.Drawing
open System.Windows.Forms
open FSharp.Charting
open System.Windows.Forms.DataVisualization.Charting

/// Add data series of the specified chart type to a chart
let addSeries typ (chart : Chart) = 
    let series = new Series(ChartType = typ)
    chart.Series.Add(series)
    series

/// Create form with chart and add the first chart series
let createChart typ = 
    let chart = new Chart(Dock = DockStyle.Fill, Palette = ChartColorPalette.Pastel)
    let mainForm = new Form(Visible = true, Width = 700, Height = 500)
    let area = new ChartArea()
    area.AxisX.MajorGrid.LineColor <- Color.LightGray
    area.AxisY.MajorGrid.LineColor <- Color.LightGray
    mainForm.Controls.Add(chart)
    chart.ChartAreas.Add(area)
    chart, addSeries typ chart

let chart, series = createChart SeriesChartType.FastLine
let axisX = chart.ChartAreas.[0].AxisX
let axisY = chart.ChartAreas.[0].AxisY

chart.ChartAreas.[0].InnerPlotPosition <- new ElementPosition(10.0f, 2.0f, 85.0f, 90.0f)

let updateRanges (n) = 
    let values = 
        seq { 
            for p in series.Points -> p.YValues.[0]
        }
    axisX.Minimum <- float n - 500.0
    axisX.Maximum <- float n
    axisY.Minimum <- values |> Seq.min |> Math.Floor
    axisY.Maximum <- values |> Seq.max |> Math.Ceiling

let ctx = SynchronizationContext.Current

let updateChart (valueX, valueY) = 
    async { 
        do! Async.SwitchToContext(ctx)
        if chart.IsDisposed then 
            do! Async.SwitchToThreadPool()
            return false
        else 
            series.Points.AddXY(valueX, valueY) |> ignore
            while series.Points.Count > 500 do
                series.Points.RemoveAt(0)
            updateRanges (valueX)
            do! Async.SwitchToThreadPool()
            return true
    }

let randomWalk = 
    let rnd = new Random()

    let rec loop (count, value) = 
        async { 
            let count, value = count + 1, value + (rnd.NextDouble() - 0.5)
            Thread.Sleep(20)
            let! running = updateChart (float count, value)
            if running then return! loop (count, value)
        }
    loop (0, 0.0)

Async.Start(randomWalk)

1 个答案:

答案 0 :(得分:2)

Async.Start操作在后台启动异步工作流,然后在后台工作添加到队列后立即完成。如果您的程序在此之后完成,则后台工作永远不会运行。

如果您使用Windows Forms编写应用程序,那么您可能需要以下内容:

Async.Start(randomWalk)
Application.Run(mainForm)

Start调用将安排工作,Run调用将控件传递给Windows窗体以运行应用程序,直到mainForm关闭。

在其他情况下,您可以采用不同的方式处理 - 在脚本中,您的代码可以正常工作,因为F#Interactive在执行命令后会继续运行后台工作。在控制台应用程序中,您可以运行Console.ReadLine并让用户通过在任何时候点击输入来终止应用程序。