F# 中的接口对象语法

Interface Object syntax in F#

我正在将用于多页打印的 C# 代码翻译成 F#。谁能告诉我怎么翻译:

((IAddChild)page1Content).AddChild(page1)

上下文:

       // printdia = printdialog
       // printdoc = printdocument

       // create a page
       let page1 = new System.Windows.Documents.FixedPage()
       page1.Width <- printdoc.DocumentPaginator.PageSize.Width
       page1.Height <- printdoc.DocumentPaginator.PageSize.Height
       page1.Children.Add(printcanvas) |> ignore
       // add the page to the document
       let page1Content = new System.Windows.Documents.PageContent()
 (*C#*)((IAddChild)page1Content).AddChild(page1)
       printdoc.Pages.Add(page1Content) |> ignore
       // and print
       printdia.PrintDocument(printdoc.DocumentPaginator, ordernr.Text);

Original code in C#

如果 page1Content.AddChild(page1) 不起作用,请尝试 (page1Content :> IAddChild).AddChild(page1)