I'm using C#.NET 2008.
When I compiled and executed the C# MDI skin sample of codejock xtreme suite professional 11.2.2, everything worked fine.
I created a new C# Winforms Application project(supported .NET Framework 3,5), added some ActiveX files(XtremeCommandBars.v11.2.2.ocx, XtremeDockingPane.v11.2.2.ocx, XtremeSkinFramework.v11.2.2.ocx) in references, copied some lines of sample project in my project file, and compiled.. but I couldn't compile with showing below errors..
C:\Project\TestCSharp\Form1.cs(14,17): error CS0246: The type or namespace name 'AxXtremeCommandBars' could not be found (are you missing a using directive or an assembly reference?) C:\Project\TestCSharp\Form1.cs(15,17): error CS0246: The type or namespace name 'AxXtremeDockingPane' could not be found (are you missing a using directive or an assembly reference?) C:\Project\TestCSharp\Form1.cs(16,23): error CS0246: The type or namespace name 'AxXtremeSkinFramework' could not be found (are you missing a using directive or an assembly reference?)
my code is..
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;
namespace TestCSharp { public partial class Form1 : Form { private AxXtremeCommandBars.AxCommandBars CommandBars; private AxXtremeDockingPane.AxDockingPane DockingPaneManager; static public AxXtremeSkinFramework.AxSkinFramework skinFramework;
public Form1() { InitializeComponent(); } } }
How can I use SkinFrameWork in my projects?
plz give me a reply.. thinks..
(Can I get a tutorials how to use SkinFrameWork in c# project?)
------------- Hi~
|