- 浏览: 36054 次
- 性别:
- 来自: 北京
文章分类
最新评论
A real-world program
basic application layout
<Window x:Class="TextEditor.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Text Editor"
Height="600"
Width="800">
<DockPanel>
<Menu x:Name="menu"
DockPanel.Dock="Top" />
<ToolBarTray x:Name="toolbar"
DockPanel.Dock="Top" />
<StatusBar DockPanel.Dock="Bottom">
<TextBlock x:Name="status" />
</StatusBar>
<RichTextBox x:Name="body"
SpellCheck.IsEnabled="True"
AcceptsReturn="True"
AcceptsTab="True"
BorderThickness="0 2 0 0" />
</DockPanel>
</Window>
toolbars with quick-access
<ToolBarTray>
<ToolBar>
<Button ToolTip="Open">
<Image Source="Icons/folder_page.png" />
</Button>
<Button ToolTip="Save">
<Image Source="Icons/page_save.png" />
</Button>
</ToolBar>
</ToolBarTray>
increasing maintainability
导入xml名字空间:xmlns:name="clrnamespace:clrNamespace;
assembly=assembly.dll"
TextEditorToolbar.xaml.cs代码
private void UserControl_Loaded(object sender, RoutedEventArgs e)
{
for (double i = 8; i < 48; i += 2)
{
fontSize.Items.Add(i);
}
}
<UserControl x:Class="TextEditor.TextEditorToolbar"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Loaded="UserControl_Loaded">
<ToolBarTray>
<ToolBar>
<Button ToolTip="Open">
<Image Source="Icons/folder_page.png" />
</Button>
<Button ToolTip="Save">
<Image Source="Icons/page_save.png" />
</Button>
</ToolBar>
.........
using menu
TextEditorMenu.xaml.cs代码
private void About_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show("Teach Yourself WPF in 24 Hours - Text Editor”,"About”);
}
<UserControl x:Class="TextEditor.TextEditorMenu"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Menu>
<MenuItem Header="_File">
<MenuItem Header="_New" />
<MenuItem Header="_Open" />
<MenuItem Header="_Save" />
<MenuItem Header="Save As" />
<Separator />
<MenuItem Header="_Print" />
<Separator />
<MenuItem Header="Close" />
</MenuItem>
.......
RichTextBox
FlowDocument(Powerful!Some of the major features supported by FlowDocument are Block elements like Paragraph, Section, List, and Table. When these elements are combined with those mentioned earlier in this hour, almost any document layout can be achieved.);
ItemsControl;
TextRange(To save or load the content of a RichTextBox);
DocumentManager.cs
using System.IO; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using Microsoft.Win32; namespace TextEditor { public class DocumentManager { private string _currentFile; private readonly RichTextBox _textBox; public DocumentManager(RichTextBox textBox) { _textBox = textBox; } public bool CanSaveDocument() { return !string.IsNullOrEmpty(_currentFile); } public void ApplyToSelection(DependencyProperty property, object value) { if (value != null) _textBox.Selection.ApplyPropertyValue(property, value); } public void NewDocument() { _currentFile = null; _textBox.Document = new FlowDocument(); } public bool OpenDocument() { OpenFileDialog dlg = new OpenFileDialog(); if (dlg.ShowDialog() == true) { _currentFile = dlg.FileName; using (Stream stream = dlg.OpenFile()) { TextRange range = new TextRange(_textBox.Document.ContentStart, _textBox.Document.ContentEnd); range.Load(stream, DataFormats.Rtf); } return true; } return false; } public bool SaveDocument() { if (string.IsNullOrEmpty(_currentFile)) return SaveDocumentAs(); else { using (Stream stream = new FileStream(_currentFile, FileMode.Create)) { TextRange range = new TextRange(_textBox.Document.ContentStart, _textBox.Document.ContentEnd); range.Save(stream, DataFormats.Rtf); } return true; } } public bool SaveDocumentAs() { SaveFileDialog dlg = new SaveFileDialog(); if (dlg.ShowDialog() == true) { _currentFile = dlg.FileName; return SaveDocument(); } return false; } } }
详细程序见 附件1
发表评论
-
wpf应用实例
2010-07-24 15:45 1065使用WPF快速创建可拖拽的对象和窗体。 -
业务流的前端,intel终极理想:感应终端环境与任意平面成屏技术
2010-07-08 12:44 1024在欧美等人力成本高 ... -
wpf 研习1-24小时自学wpf16
2010-06-15 23:21 1382Visualizing Lists-displaying mo ... -
wpf 研习1-24小时自学wpf15
2010-06-14 23:25 936deeper into data binding ad ... -
wpf 研习1-24小时自学wpf14
2010-06-13 10:27 1402Resources and Styles 从下图,我们 ... -
wpf 研习1-24小时自学wpf13
2010-06-11 23:04 910Presenters and Views-the Shell ... -
wpf 研习1-24小时自学wpf12
2010-06-11 14:26 770A Contact Manager Choosin ... -
wpf 研习1-24小时自学wpf11
2010-06-10 15:02 970output WPF Document Con ... -
了解WPF中的路由事件和命令
2010-06-09 23:12 1333路由事件浏览 (1)在vs designer中,如在窗口中增 ... -
wpf 研习1-24小时自学wpf10
2010-06-09 16:25 977Commands In WPF, a command is ... -
wpf 研习1-24小时自学wpf9
2010-06-08 19:19 774events handle routed event: ... -
wpf 研习1-24小时自学wpf7
2010-06-07 11:04 847Application deployable file ... -
wpf 研习1-24小时自学wpf6
2010-06-05 17:14 874Data Binding markup extensi ... -
wpf 研习1-24小时自学wpf5
2010-06-05 16:14 1066basic Control Control base ... -
wpf 研习1-24小时自学wpf4
2010-06-05 11:31 668Layout Panel,Decorator; Sy ... -
wpf 研习1-24小时自学wpf3
2010-06-04 19:11 813wpf项目文件 vs->新项目->wpf应用程序 ... -
wpf 研习1-24小时自学wpf2
2010-06-04 15:39 829XAML,既然用户控件是一个大类,那么干脆对这个集合进行统一的 ... -
wpf 研习1-24小时自学wpf1
2010-06-04 12:05 728WPF是微软.net的UI 架构,也是非常重要的框架。 ... -
wpf主要知识点
2010-06-04 10:47 983template,presenter,layout,visua ... -
路由事件
2010-05-17 22:09 649如果我们在一个窗口上增加一个按钮,并且看下它的后置代码,会发现 ...
相关推荐
本文将围绕“wpf 研习1-24小时自学wpf6”这一主题,探讨WPF的核心概念和技术,旨在帮助初学者快速上手并深入理解这一强大的UI框架。 WPF是微软.NET Framework的一部分,它提供了全面的图形系统,包括2D和3D渲染、...
【标题】:“WPF研习1-24小时自学WPF9” 在Windows Presentation Foundation(WPF)的世界里,这是一段深入学习之旅的开端。WPF是.NET Framework的一个重要组成部分,它为创建丰富的、高性能的桌面应用程序提供了...
标题 "wpf 研习1-24小时自学wpf7" 提示我们这是一个关于Windows Presentation Foundation(WPF)的学习资源,可能是书籍、课程或教程的一部分,旨在帮助初学者在24小时内掌握WPF的基础知识。WPF是.NET Framework中的...
NULL 博文链接:https://x-dome.iteye.com/blog/684355
对于想要开发Windows应用的学员,WinForms和WPF(Windows Presentation Foundation)的使用也会有所介绍。 在幻灯片部分,可能会包含每章节的重点摘要,清晰的示例图解,以及关键概念的解释,帮助学生更好地吸收和...