Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Version 2.4 beta (Read 2034 times)
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Version 2.4 beta
Jun 23rd, 2010 at 6:14am
Print Post  
Version 2.4 adds the following:

TemplateNode class
The appearance of TempaltedNodes can be customized using their Template property or the Diagram.NodeTemplate property as shown below.

Code
Select All
<diag:Diagram>
	<diag:Diagram.NodeTemplate>
		<DataTemplate DataType="diag:TemplatedNode">
			<Border
			BorderBrush="{Binding Stroke}"
			BorderThickness="{Binding StrokeThickness}"
			Background="{Binding Brush}">

				<TextBlock
				Text="{Binding Text}"
				TextWrapping="{Binding TextWrapping}"
				TextTrimming="{Binding TextTrimming}"
				FontFamily="{Binding FontFamily}"
				FontSize="{Binding FontSize}"
				TextAlignment="{Binding TextAlignment}"
				VerticalAlignment="Center"
				HorizontalAlignment="Stretch"/>

			</Border>
	</DataTemplate>
</mf:Diagram.NodeTemplate>
</diag:Diagram> 



TemplatedNode is also useful as a base of custom node classes whose appearance is set via Xaml rather than overriding OnRender.

WmfExporter component
The WmfExporter class creates a Windows Metafile (WMF) drawing from the content of a Diagram. The exporter enumerates all graphics primitives contained in the WPF visual tree and creates corresponding WMF records. This enables custom graphics are hosted controls to be rendered in WMF too.

If anyone is interested in trying out the beta, please download this archive, which includes the updated diagramming.wpf assemblies:   

https://mindfusion.eu/_beta/wpfdiag24.zip

Stoyan
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Version 2.4 beta
Reply #1 - Jul 1st, 2010 at 10:53am
Print Post  
We have uploaded a new beta build that improves text rendering in exported WMF images:
https://mindfusion.eu/_beta/wpfdiag24.zip

The archive now also includes an updated help file and several tutorial projects.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint