我正在开发一个油漆应用程序。我正在使用 Canvas 控件作为白板。
我想在 WPF 画布中使用 InkCanvas 类的功能,这意味着我想在 Canvas 上绘制一个徒手形状。我怎样才能做到这一点 ?我也想另存为 *.JPG
第二个问题是像我们在 MS Paint 中那样绘制字体?我可以在其中集成 FontDialogBox 吗?如果是,如何?
感谢您 !!!
这是一个在画布上绘制线条以及如何添加 textBlock 对象的简单示例。
例子:
<StackPanel>
<Canvas MouseLeftButtonDown="myCanvas_MouseLeftButtonDown" MouseMove="myCanvas_MouseMove"
x:Name="inkCanvas" Width="400" Height="200"> </Canvas>
<Button Height="20" Width="30" x:Name="AddTextBtn" Click="AddTextBtn_Click">AddText</Button>
</StackPanel>
代码背后:
private Point _startPoint;
private Polyline _line;
private void myCanvas_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
_startPoint = e.GetPosition(myCanvas);
_line = new Polyline();
_line.Stroke = new SolidColorBrush(Colors.Black);
_line.StrokeThickness = 2.0;
myCanvas.Children.Add(_line);
}
private void myCanvas_MouseMove(object sender, MouseEventArgs e)
{
if (e.LeftButton == MouseButtonState.Pressed)
{
Point currentPoint = e.GetPosition(myCanvas);
if (_startPoint != currentPoint)
{
_line.Points.Add(currentPoint);
}
}
}
private void AddTextBtn_Click(object sender, RoutedEventArgs e)
{
// Show Font Dialog Box
TextBlock tb = new TextBlock();
tb.FontFamily = new FontFamily("Arial");
tb.FontSize = 14;
tb.Text = "SampleText";
// Set position on canvas:
Canvas.SetTop(tb,100);
Canvas.SetLeft(tb, 50);
myCanvas.Children.Add(tb);
}
但是没有纯 WPF 字体选择器。您可以使用 WinForms 中的那个,也可以看看周围有很多纯 Xaml 实现。例如链接
另存为 jpg:使用 RenderTargetBitmap 或 CroppedBitmap;请参阅 SO 上的链接