Posts Tagged WPF

Constructing a Bluetooth controlled Robot

Posted by Marco Minerva In this post, I’ll show how to construct a robot with .NET Gadgeteer and how to control it using a Bluetooth connection from a PC application based on the 32feet.NET library. Let’s start from .NET Gadgeteer part. The base of our robot is the Rover 5 Tank Chassis, that provides two […]

, , , ,

9 Comments

Un pulsante di comando per .NET Gadgeteer (Italiano)

Continua la nostra rassegna dei controlli grafici per il display del .NET Gadgeteer (An English translation is available). Questa volta ci occupiamo del CommandButton, ovvero il classico pulsante di comando. Il codice della classe relativa è il seguente: Il CommandButton eredita da Border e definisce quattro proprietà, con cui è possibile specificare il colore del […]

,

Leave a comment

Una ProgressBar per .NET Gadgeteer (Italiano)

Come accennato in uno post di qualche giorno fa, i controlli grafici forniti da .NET Gadgeteer possono essere facilmente combinati per creare oggetti più complessi. Oggi vediamo come realizzare una ProgressBar, utile per mostrare a video lo stato di avanzamento delle operazioni. Il controllo ProgressBar eredita da Border e vi aggiunge quattro proprietà: Minimum e […]

,

5 Comments

Windows-like Interface for the .NET Gadgeteer Display (English)

by Marco Minerva (translated from Italian by Mike Dodaro) In the preceding post we created graphical interfaces using the display platform of .NET Gadgeteer.  We have seeen how the controls available are extensible in the implementation of complex user interfaces. We would like to realize a shielded “Windows-like” UI, that is, with title bar and status bar. We create a class named MainWindow, which the Canvas […]

,

1 Comment

Interfacce Windows-like con .NET Gadgeteer (Italiano)

Nel precedente post abbiamo visto come creare interfacce grafiche sul display della piattaforma .NET Gadgeteer. In tale occasione abbiamo accennato al fatto che i controlli disponibili possono essere facilmente estesi per ottenere interfacce anche molto complesse. Vediamo quindi come creare la base per realizzare una schermata “Windows-like”, ovvero con barra del titolo e barra di […]

,

Leave a comment

Using the Graphics Interfaces of .NET Gadgeteer (English)

By Marco Minerva (translated from Italian by Mike Dodaro) Thanks to the tools provided by .NET Gadgeteer SDK, creating graphical interfaces with the touch screen is very simple. In fact, the Display object, besides the classic “primitive” functions to create images, geometric shapes, and text, exposes an object called WPFWindow with which it is possible to create objects with functionality similar […]

,

Leave a comment

Realizzare interfacce per .NET Gadgeteer (Italiano)

Grazie agli strumenti offerti dal .NET Gadgeteer SDK, creare interfacce grafiche touch screen è estremamente semplice. L’oggetto Display,  infatti, oltre alle classiche funzioni “primitive” per disegnare immagini, forme geometriche e testo, espone un oggetto, chiamato WPFWindow, grazie al quale è possibile creare oggetti con una filosofia simile a quella che si avrebbe con WPF. Vediamo […]

,

Leave a comment