'IT/ASP.NET'에 해당되는 글 2건

  1. 2013.12.24 div를 이용한 Frameset
  2. 2012.09.14 Ribbon Button
        body
        {
            margin: 0;
            padding: 0;
            border: 0;
            overflow: hidden;
            height: 100%;
            max-height: 100%;
        }
        
        #framecontentLeft, #framecontentTop
        {
            position: absolute;
            top: 0;
            left: 0;
            width: 200px; /*Width of left frame div*/
            height: 100%;
            overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
            background-color: navy;
            color: white;
        }
        
        #framecontentTop
        {
            left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
            right: 0px;
            width: auto;
            min-width: 800px;
            height: 120px; /*Height of top frame div*/
            overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
            background-color: navy;
            color: white;
        }
        
        #maincontent
        {
            position: fixed;
            left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
            top: 120px; /*Set top value to HeightOfTopFrameDiv*/
            right: 0;
            bottom: 0;
            min-width: 600px;
            overflow: auto;
            background: #fff;
        }
        
        .innertube
        {
            margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
        }
        
        * html body
        {
            /*IE6 hack*/
            padding: 120px 0 0 200px; /*Set value to (HeightOfTopFrameDiv 0 0 WidthOfLeftFrameDiv)*/
        }
        
        * html #maincontent
        {
            /*IE6 hack*/
            height: 100%;
            width: 100%;
        }
        
        * html #framecontentTop
        {
            /*IE6 hack*/
            width: 100%;
        }
        
        div#HomeButton
        {
            margin: 0px;
            padding: 0px;
            border: 1px solid red;
            width: 198px;
            height: 118px;
            font-size:12pt;
            color: White;
        }

 

    
여기에는 HomeButton이 놓임.

Sub Menu가 놓이는 자리

CSS Left and Top Frames Layout

Main Menu가 놓이는 자리

Posted by lI헐헐Il
,

Ribbon Button

IT/ASP.NET 2012. 9. 14. 12:51

상용화 컨트롤인 것 같긴 한데...

아 찾아보니 WPF에서 쓰는 거네...

예를 들자면 뭐,

http://www.telerik.com/help/wpf/radribbonbar-features-ribbon-controls-radribbonbutton.html

이런거네....

Posted by lI헐헐Il
,