2015-05-28 1 views
1

Я бы хотел послать ToastNotification в стиле Windows 8.1 из консольного приложения F #.Отправить тост с F #

Вот мой код:

let gotMessage message = 
    let xdoc = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastText03) 
    let children = xdoc.ChildNodes 
    children.[0 |> uint32].AppendChild(xdoc.CreateTextNode "Message coming") |> ignore 
    children.[2 |> uint32].AppendChild(xdoc.CreateTextNode message) |> ignore 
    let toast = new ToastNotification(xdoc) 
    toast.add_Activated (fun notification _ -> 0 |> ignore) |> ignore 

Но я получаю следующее исключение:

Сначала немецкая:

System.IO.FileNotFoundException wurde nicht behandelt. 
Message: Ein Ausnahmefehler des Typs "System.IO.FileNotFoundException" ist in Ineedtea.Server.exe aufgetreten. 
Zusätzliche Informationen: Die Datei oder Assembly "Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null" oder eine Abhängigkeit davon wurde nicht gefunden. Das System kann die angegebene Datei nicht finden. 

Теперь английский

System.IO.FileNotFoundException was not handled. 
Message: An exception of type "System.IO.FileNotFoundException" appeared in Ineedtea.Server.exe. 
Additional information: The file or assembly "Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null" or a dependency wasn't found. The system cannot find the file. 

ли кто-нибудь иметь i ДЭА?

ответ