本文整理汇总了C#中Diagram.ApplyTemplate方法的典型用法代码示例。如果您正苦于以下问题:C# Diagram.ApplyTemplate方法的具体用法?C# Diagram.ApplyTemplate怎么用?C# Diagram.ApplyTemplate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Diagram
的用法示例。
在下文中一共展示了Diagram.ApplyTemplate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: BindToDiagram
private void BindToDiagram(Diagram diagram) {
if (diagram == null) {
this.Model = null;
return;
}
if (diagram.Model is PartsModel) {
Diagram.Error("cannot show an Overview of a Diagram with a PartsModel");
return;
}
ApplyTemplate();
DiagramPanel vpanel = this.Panel;
if (vpanel == null) return;
//vpanel.IsVirtualizing = false;
diagram.ApplyTemplate();
DiagramPanel dpanel = diagram.Panel;
if (dpanel == null) return;
if (!this.BoundEventHandlers) {
// try to avoid executing this twice
this.BoundEventHandlers = true;
dpanel.ViewportBoundsChanged += this.ObservedPanel_ViewportBoundsChanged;
dpanel.DiagramBoundsChanged += this.ObservedPanel_DiagramBoundsChanged;
dpanel.PartBoundsChanged += this.ObservedPanel_PartBoundsChanged;
dpanel.PartVisibleChanged += this.ObservedPanel_PartVisibleChanged;
diagram.TemplatesChanged += this.ObservedDiagram_TemplatesChanged;
diagram.ModelReplaced += this.ObservedDiagram_ModelReplaced;
vpanel.ViewportBoundsChanged += this.OverviewPanel_ViewportBoundsChanged;
}
UpdateModel();
UpdateTemplates();
BindBox();
}