62 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			62 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
|  | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PunchlistFromChart.aspx.cs" Inherits="FineUIPro.Web.Transfer.Chart.PunchlistFromChart" %> | ||
|  | <%@ Register Src="~/Controls/ChartControl.ascx" TagName="ChartControl" TagPrefix="uc1" %> | ||
|  | <!DOCTYPE html> | ||
|  | 
 | ||
|  | <html xmlns="http://www.w3.org/1999/xhtml"> | ||
|  | <head runat="server"> | ||
|  | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
|  |     <title></title> | ||
|  | </head> | ||
|  | <body> | ||
|  |     <form id="form1" runat="server"> | ||
|  |         <f:PageManager ID="PageManager1" runat="server" AutoSizePanelID="RegionPanel1" AjaxAspnetControls="divAnalyse,divCheck" /> | ||
|  | 
 | ||
|  |         <f:RegionPanel ID="RegionPanel1" ShowBorder="false" runat="server" Margin="5px"> | ||
|  |             <Regions> | ||
|  |                     | ||
|  |                 <f:Region ID="Region1" ShowBorder="false" ShowHeader="false" RegionPosition="Top" | ||
|  |                     BodyPadding="0 5 0 0" Width="200px" Layout="Fit" runat="server" EnableCollapse="true"> | ||
|  |                     <Items> | ||
|  |                         <f:Form ID="Form2" ShowHeader="false" ShowBorder="false" runat="server"> | ||
|  |                             <Rows> | ||
|  |                                 <f:FormRow ColumnWidths="20% 85%"> | ||
|  |                                     <Items> | ||
|  |                                         <f:RadioButtonList runat="server" ID="rblType" Label="统计方式" LabelAlign="Right" AutoPostBack="true" OnSelectedIndexChanged="rblType_SelectedIndexChanged" > | ||
|  |                                             <f:RadioItem Text="百分比" Value="1" Selected="true" /> | ||
|  |                                             <f:RadioItem Text="数量" Value="2" /> | ||
|  |                                         </f:RadioButtonList> | ||
|  |                                         <f:Label runat="server"></f:Label> | ||
|  |                                     </Items> | ||
|  |                                 </f:FormRow> | ||
|  |                             </Rows> | ||
|  |                         </f:Form> | ||
|  |                     </Items> | ||
|  |                 </f:Region> | ||
|  |                 <f:Region ID="Region2" ShowBorder="false" ShowHeader="false" Position="Center" Layout="VBox" AutoScroll="true"  | ||
|  |                     BoxConfigAlign="Stretch" BoxConfigPosition="Left" runat="server"> | ||
|  |                     <Items> | ||
|  |                         <f:TabStrip ID="TabStrip1" CssClass="f-tabstrip-theme-simple" Height="700px" ShowBorder="true" | ||
|  |                             TabPosition="Top" MarginBottom="5px" EnableTabCloseMenu="false" runat="server"> | ||
|  |                             <Tabs> | ||
|  |                                 <f:Tab ID="Tab2" Title="图表" BodyPadding="5px" Layout="Fit" IconFont="Bookmark" AutoScroll="true" | ||
|  |                                     runat="server" TitleToolTip="图表"> | ||
|  |                                     <Items> | ||
|  |                                         <f:ContentPanel ShowHeader="false" runat="server" ID="cpCostTime" Margin="0 0 0 0"> | ||
|  |                                             <div id="divAnalyse"> | ||
|  |                                                 <uc1:ChartControl ID="ChartUc" runat="server" /> | ||
|  |                                             </div> | ||
|  |                                         </f:ContentPanel> | ||
|  |                                     </Items> | ||
|  | 
 | ||
|  |                                      | ||
|  |                                 </f:Tab> | ||
|  |                             </Tabs> | ||
|  |                         </f:TabStrip> | ||
|  |                     </Items> | ||
|  |                 </f:Region> | ||
|  |             </Regions> | ||
|  |         </f:RegionPanel> | ||
|  |     </form> | ||
|  | </body> | ||
|  | </html> |