Bonjour,
Je suis en train de faire un stage (rénovation de logiciel) en C# et on m'a très fortement conseillé d'utiliser Telerik.
Cet outil est tout nouveau pour moi. Et quand je regarde la doc pour créer un modèle Telerik avec RadForm, voici ce qu'elle dit :
Et ainsi suit les instructions pour modifier un WindowsForm en RadForm manuellement.To add a RadForm control to your project you can either choose the RadForm Template from the project's 'Add New Item...' dialog or create a standard Windows Form and change its base class to Telerik.WinControls.UI.RadForm. In the following example we will create a RadForm by manually changing the base class of a standard Windows Form:
Seulement, j'ai beau importer avec using ou modifier la déclaration de la Form, Visual Studio ne reconnait rien :
Ne connaissant pas le logiciel à même pas 20% (Oui c'est débile de dire ça), je ne parviens pas à trouver les options adéquats.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using Telerik.WinControls; using Telerik.WinControls.UI; namespace TestTelerik { public partial class Form1 : Telerik.WinControls.UI.RadForm { public Form1() { InitializeComponent(); } } }
Mon VB est en français, mais j'ai beau ne pas avoir de problèmes avec l'anglais je bloque quand même.
Merci d'avance les gars !
Partager