Skip to content

Commit

Permalink
Add status panel to preview form for URL resolution, fix mohzy83#60
Browse files Browse the repository at this point in the history
  • Loading branch information
VinsWorldcom committed Dec 13, 2022
1 parent 6099dd9 commit ad3abaa
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
27 changes: 27 additions & 0 deletions NppMarkdownPanel/Forms/MarkdownPreviewForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions NppMarkdownPanel/Forms/MarkdownPreviewForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@ private void webBrowserPreview_Navigating(object sender, WebBrowserNavigatingEve
}
}

private void webBrowserPreview_StatusTextChanged(object sender, EventArgs e)
{
toolStripStatusLabel1.Text = webBrowserPreview.StatusText;
}

private void btnSaveHtml_Click(object sender, EventArgs e)
{
using (SaveFileDialog saveFileDialog = new SaveFileDialog())
Expand Down
3 changes: 3 additions & 0 deletions NppMarkdownPanel/Forms/MarkdownPreviewForm.resx
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="statusStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>238, 17</value>
</metadata>
<metadata name="tbPreview.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
Expand Down

0 comments on commit ad3abaa

Please sign in to comment.