Ross Falconer
Ross Falconer

Reputation: 1

Microsoft Q# output to WPF or Windows Form

It is possible to interface a Q# class with a Windows Form or a WPF? The examples Microsoft provide in their Quantum Development Tool Kit seem only to interface with a Console.

Upvotes: 0

Views: 77

Answers (1)

Mariia Mykhailova
Mariia Mykhailova

Reputation: 2032

Microsoft Quantum Development Kit relies on .NET to run, so it should work with anything that uses .NET. Majority of the Q# samples use .NET Core, but PythonInterop sample uses .NET Standard instead of .NET Core, so Quantum Development Kit can be used from Framework-only projects as well.

We haven't tried WPF or Windows Forms, though. In the libraries and samples repository, the sample H2SimulationGUI which requires visualization uses the Electron framework to do it.

Upvotes: 1

Related Questions