Hi,
I'm trying to do something that very similar to the TableShape demo example.
In the example there is a class named TableAdditionalContent, that inherited from a class named AdditionalContent ( public class TableAdditionalContent : AdditionalContent )
I use all the references in the example (except the 2 that belong only the example), but my VS can't find completion to the AdditionalContent class (it's just can't find it in any reference i guess...).
I would like to get some help to know is there maybe a missing reference that the AdditionalContent class need or any help..
This is the example code from the demo:
using System;
using System.Linq;
using System.Windows;
using System.Windows.Input;
using Telerik.Windows.Controls;
using Telerik.Windows.Controls.Diagrams.Extensions.ViewModels;
using Telerik.Windows.Diagrams.Core;
using Telerik.Windows.Examples.Diagrams.Swimlane;
using Telerik.Windows.Examples.Diagrams.TableShape.Models;
namespace Telerik.Windows.Examples.Diagrams.TableShape
{
public class TableAdditionalContent : AdditionalContent
}
Thank U!