This commit is contained in:
crusader
2018-08-16 00:16:28 +09:00
parent f770a24a10
commit 648efb7a7a
12 changed files with 375 additions and 5 deletions

View File

@@ -0,0 +1,22 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-menu-bar',
templateUrl: './menu-bar.component.html',
})
export class MenuBarComponent implements OnInit {
private style: string;
private titleBarClass: string;
private showTopResize: boolean;
private showLeftResize: boolean;
constructor(
) { }
ngOnInit() {
}
onTitlebarDoubleClick() {
}
}