您可以使用CustomFloatingObject
以下代码创建一个浮动对象。
- 实现自定义 CustomFloatingObject 类。
- 创建浮动对象内容。
- 将浮动对象添加到工作表。
参考:http ://helpcentral.componentone.com/NetHelp/SpreadWPF/webframe.html#floating.html
public class MyFloatingObject : GrapeCity.Windows.SpreadSheet.UI.CustomFloatingObject
{
public MyFloatingObject(string name, double x, double y, double width, double height)
: base(name, x, y, width, height)
{
}
public override FrameworkElement Content
{
get
{
Border border = new Border();
StackPanel sp = new StackPanel();
sp.Children.Add(new Button() { Content = "Button" });
border.BorderThickness = new Thickness(1);
border.BorderBrush = new SolidColorBrush(Colors.Black);
border.Child = sp;
return border;
}
}
}
将此浮动对象的实例添加到工作表中
MyFloatingObject mf = new MyFloatingObject("mf1", 10, 10, 200, 100);
gcSpreadSheet1.ActiveSheet.FloatingObjects.Add(mf);