This repository has been archived on 2022-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
bookmark-manager/BookmarkTreeView.cs

21 lines
347 B
C#
Raw Normal View History

using bzit.bomg.Models;
2017-07-30 11:59:34 +00:00
using System;
using System.ComponentModel;
using System.Drawing;
using System.IO;
2017-07-30 11:59:34 +00:00
using System.Windows.Forms;
namespace bzit.bomg
{
public partial class BookmarkTreeView : RyzStudio.Windows.Forms.MovableTreeView
{
public BookmarkTreeView()
{
InitializeComponent();
}
2017-07-30 11:59:34 +00:00
}
}