- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在弄清楚这个问题时遇到了一些麻烦,希望有人能提供帮助。
我有一个带有 RichTextBox 的 WPF 项目。
当我编辑文本时,我希望文档中的光标始终保持垂直居中。
例如,在编辑时向上或向下推,而不是光标向上,我希望文本向下。这应该会造成光标保持静止的印象。
非常感谢。
最佳答案
不确定这是否是您的想法,但这里有一个 RichTextBox 的概念证明,它使插入符号在用户放置它的位置居中(在框中单击)。
虽然正如 Omkar 所说,如果文档已滚动到开头或结尾,您需要添加空格,但您需要添加白色以允许文本滚动。
<RichTextBox HorizontalAlignment="Left" Height="311" VerticalAlignment="Top" Width="509" PreviewKeyDown="HandleKeyDownEvent">
<FlowDocument>
<Paragraph Margin="0">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla turpis sem, tincidunt id vestibulum venenatis, fermentum eget orci. Donec mollis neque ac leo tincidunt tempus. Pellentesque mollis, nunc sit amet fermentum rutrum, lectus augue ultrices nibh, at lacinia est est ut justo. Cras non quam eu enim vulputate porttitor eu sit amet lectus. Suspendisse potenti. Maecenas metus nunc, dapibus id dapibus rhoncus, semper quis leo. Pellentesque eget risus magna, dignissim aliquam diam. Morbi.
</Paragraph>
</FlowDocument>
</RichTextBox>
在后面的代码中:
private void HandleKeyDownEvent(object sender, KeyEventArgs e)
{
RichTextBox rtb = sender as RichTextBox;
if (rtb != null)
{
//text to scroll up relative to caret
if (e.Key == Key.Down)
{
Block paragraph;
//get the whitespace paragraph at end of documnent
paragraph =
rtb.Document.Blocks
.Where(x => x.Name == "lastParagraph")
.FirstOrDefault();
// if there is no white space paragraph create it
if (paragraph == null)
{
paragraph = new Paragraph { Name = "lastParagraph", Margin = new Thickness(0) };
//add to the end of the document
rtb.Document.Blocks.InsertAfter(rtb.Document.Blocks.LastBlock, paragraph);
}
// if viewport larger than document, add whitespace content to fill view port
if (rtb.ExtentHeight < rtb.ViewportHeight)
{
Thickness margin = new Thickness() { Top = rtb.ViewportHeight - rtb.ExtentHeight };
margin.Bottom = rtb.ViewportHeight - rtb.ExtentHeight;
paragraph.Margin = margin;
}
// if the document has been scrolled to the end or doesn't fill the view port
if (rtb.VerticalOffset + rtb.ViewportHeight == rtb.ExtentHeight)
{
// and a line to the white paragraph
paragraph.ContentEnd.InsertLineBreak();
}
//move the text up relative to caret
rtb.LineDown();
}
// text is to scroll download relative to caret
if (e.Key == Key.Up)
{
// get whitespace at start of document
Block paragraph;
paragraph =
rtb.Document.Blocks
.Where(x => x.Name == "firstParagraph")
.FirstOrDefault();
//if whitespace paragraph is null append a new one
if (paragraph == null)
{
paragraph = new Paragraph { Name = "firstParagraph", Margin = new Thickness(0) };
rtb.Document.Blocks.InsertBefore(rtb.Document.Blocks.FirstBlock, paragraph);
}
// up document is at top add white space
if (rtb.VerticalOffset == 0.0)
{
paragraph.ContentStart.InsertLineBreak();
}
//move text one line down relative to caret
rtb.LineUp();
}
}
}
编辑:这种方法似乎有效。行高是根据一行行首与下一行行首的差来确定的,避免了换行影响偏移量的问题。
<RichTextBox
PreviewKeyDown="PreviewKeyDownHandler">
<FlowDocument>
<!-- Place content here -->
</FlowDocument>
</RichTextBox>
在后面的代码中:
private void PreviewKeyDownHandler(object sender, KeyEventArgs e)
{
RichTextBox rtb = sender as RichTextBox;
if (rtb != null)
{
if (e.Key == Key.Down)
{
// if there is another line below current
if (rtb.CaretPosition.GetLineStartPosition(0) != rtb.CaretPosition.GetLineStartPosition(1))
{
// find the FlowDocumentView through reflection
FrameworkElement flowDocumentView = GetFlowDocument(rtb);
// get the content bounds of the current line
Rect currentLineBounds = rtb.CaretPosition.GetCharacterRect(LogicalDirection.Forward);
// move the caret down to next line
EditingCommands.MoveDownByLine.Execute(null, rtb);
// get the content bounds of the new line
Rect nextLineBounds = rtb.CaretPosition.GetCharacterRect(LogicalDirection.Forward);
// get the offset the document
double currentDocumentOffset = flowDocumentView.Margin.Top;
// add the height of the previous line to the offset
// the character rect of a line doesn't include the baseline offset so the actual height of line has to be determined
// from the difference in the offset between the tops of the character rects of the consecutive lines
flowDocumentView.Margin = new Thickness { Top = currentDocumentOffset + currentLineBounds.Top - nextLineBounds.Top };
}
// prevent default behavior
e.Handled = true;
}
if (e.Key == Key.Up)
{
if (rtb.CaretPosition.GetLineStartPosition(0) != rtb.CaretPosition.GetLineStartPosition(-1))
{
FrameworkElement flowDocumentView = GetFlowDocument(rtb);
Rect currentLineBounds = rtb.CaretPosition.GetCharacterRect(LogicalDirection.Forward);
EditingCommands.MoveUpByLine.Execute(null, rtb);
Rect nextLineBounds = rtb.CaretPosition.GetCharacterRect(LogicalDirection.Forward);
double currentDocumentOffset = flowDocumentView.Margin.Top;
flowDocumentView.Margin = new Thickness { Top = currentDocumentOffset + currentLineBounds.Top - nextLineBounds.Top };
}
e.Handled = true;
}
}
}
protected FrameworkElement GetFlowDocument(RichTextBox textBox)
{
FrameworkElement flowDocumentVisual =
GetChildByTypeName(textBox, "FlowDocumentView") as FrameworkElement;
return flowDocumentVisual;
}
protected DependencyObject GetChildByTypeName(DependencyObject dependencyObject, string name)
{
if (dependencyObject.GetType().Name == name)
{
return dependencyObject;
}
else
{
if (VisualTreeHelper.GetChildrenCount(dependencyObject) > 0)
{
int childCount = VisualTreeHelper.GetChildrenCount(dependencyObject);
for (int idx = 0; idx < childCount; idx++)
{
var dp = GetChildByTypeName(VisualTreeHelper.GetChild(dependencyObject, idx), name);
if (dp != null)
return dp;
}
return null;
}
else
{
return null;
}
}
}
关于c# - 使 FlowDocument 光标在 RichTextBox 中垂直居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9492528/
我有一个包含透明区域的 png,并将其设置为图像标签。 当光标位于图像的不透明部分上时,如何将光标设置为手? 谢谢 最佳答案 为此,您需要查看位图本身。 WPF 的 HitTest 机制认为任何使用“
我想隐藏圆形仪表的手(那就是中间的东西,对吧?)。到目前为止,我尝试过: myCircularGauge.getHand().setVisible(false); 但是,绘制图表时这似乎会产生崩溃。如
我有两张图片:一张是张开的手,一张是抓着的手。我希望一个简单的“onmousedown”和“onmouseup”函数有助于制作出著名的抓手,您可以在类似谷歌地图的东西中看到它。但...抱歉,从头开始:
是否可以在sequelize迁移中使用光标?我正在尝试创建 DML 脚本,其想法是循环表中的值,即。使用游标输入日期,然后将值插入到其他表中,即。光标内的膳食日。 table : day dayId
我正在尝试使用格式加载值 +02:00 - mysql> select SUBSTR('2016-01-12T14:29:31.000+02:00',24,6); +02:00
我一直在尝试构建一个基于网络的文本编辑器。作为该过程的一部分,我正在尝试动态创建和修改基于元素的事件和用于字体编辑的击键事件。在这个特别的jsfiddle示例 我试图在按下 CTRL+b 并将焦点/插
我同时使用了 supertab 和 snipmate 插件。假设我正在使用 snipmate 创建一个 if 语句结构。在 if 语句中完成添加语句后,如何快速将光标移动到 if 语句之后。例如: i
我正在为我的 BlackBerry 项目创建一个搜索框,但看起来 BlackBerry 没有用于创建单行 EditField 的 API。我通过扩展 BasicEditField 和覆盖布局和绘制等方
我想知道如何获得 not-allowed光标在我禁用的链接上。我试图将它添加到禁用事件中,但它在那里不起作用,然后我尝试使用相同的光标事件引入悬停效果。关于如何让它发挥作用的任何想法?我在这里包含了我
在 Delphi 6 中,我可以使用 Screen.Cursor 更改所有表单的鼠标光标: procedure TForm1.Button1Click(Sender: TObject); begin
这个 Meteor 服务器代码需要每 n 秒从集合中打印一次文档,我该如何让它工作?谢谢 myCol.find({abc: undefined}).forEach( fun
在这个论坛上花了相当长的时间寻找与我的问题类似的答案,但找不到符合我的情况的答案。 我有一个 HTML 表单,通过 javascript 将其提交到我的 aspx 页面。 function Submi
是否可以在网页上创建透明的 HTML 光标?我使用 div 作为光标,我想让 div 50% 透明: http://jsfiddle.net/mCgmP/16/ I want this cursor
我正在使用 Cursor 来获取存储在我的 SQLite 数据库中的一些数据。当我的光标有数据库中的一些数据时,代码可以正常工作。但是,当 Cursor 不包含任何数据时,我在 Cursor.move
我希望隐藏特定范围的 x 和 y 位置中的光标。这是一些示例代码,代表了我想要做的事情。 if(x >= xLowerBound && x = yLowerBound + 20 && y = xLow
我有一个 .jsp 页面,用户可以在其中输入信息,然后使用保存按钮保存。该应用程序可以运行,但由于按钮的单击事件正在运行 Java 代码,然后将保存的信息添加到 Oracle 数据库,因此需要一些时间
为什么 Android 中 Cursor 没有 moveBeforeFirst()? 其他风格的 Java 中也有类似的方法,如果您需要重新迭代结果集(例如,在 while(cursor.moveTo
我想使用 Tkinter 捕获相对鼠标运动。我附上一个监听器并且能够获取鼠标移动。但是,我希望能够“捕获”/“锁定”光标,使其不可见并且无法离开窗口(就像游戏一样)。我的目标是获得相对鼠标移动而不受窗
当应用程序同步时,我尝试更新数据库中每一行的“html”列。我用过这个教程Here将应用程序添加到“配置文件”列表中。这是我在 SyncAdapter 中使用的代码: private static v
我正在使用 Uploadify带有图像按钮。一切正常。除了,我需要在鼠标悬停时使用 cursor:crosshair; 而不是 cursor:default;。 我试着在 CSS 中这样设置它: ob
我是一名优秀的程序员,十分优秀!