1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/GrapeCity-dataprocess

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
Template_Edit.aspx 100 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
葡萄城控件 Отправлено 22.12.2014 08:54 c2f0005
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true"
CodeBehind="Template_Edit.aspx.cs" Inherits="ControlExplorer.Template_Edit" %>
<%@ Register Assembly="FarPoint.Web.Spread" Namespace="FarPoint.Web.Spread" TagPrefix="FarPoint" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<script type="text/javascript" language="javascript">
function SpreadCallBack() {
var spread1 = document.getElementById("<%=fpDataFields.ClientID %>");
spread1.EndEdit();
spread1.UpdatePostbackData();
}
</script>
<style type="text/css">
.cellClass
{
text-decoration: underline;
color: Blue;
text-align: center;
cursor: pointer;
}
</style>
<script language="javascript" type="text/javascript">
function del() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
var activeCol = ss.GetActiveCol();
var activeRow = ss.GetActiveRow();
if (activeCol == 9) {
if (confirm("确定删除该行?")) {
ss.CallBack("DeleteRow");
ss.Delete();
setFocus(ss);
}
}
else if (activeCol == 8 && ss.GetValue(activeRow, activeCol) != "点击保存") {
alert("本列为指令列。双击前八列编辑。");
}
else if (activeCol == 8 && ss.GetValue(activeRow, activeCol) == "点击保存") {
var cellid = ss.GetValue(activeRow, 0);
var celldate = ss.GetValue(activeRow, 1);
var cellpro = ss.GetValue(activeRow, 2);
var cellno = ss.GetValue(activeRow, 3);
var cellincome = ss.GetValue(activeRow, 4);
var cellregion = ss.GetValue(activeRow, 5);
var cellsaler = ss.GetValue(activeRow, 6);
var cellnote = ss.GetValue(activeRow, 7);
ss.CallBack("btnupdate" + "=" + cellid + "=" + celldate + "=" + cellpro + "=" + cellno + "=" + cellincome + "=" + cellregion + "=" + cellsaler + "=" + cellnote);
setFocus(ss);
}
}
function edit() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
var activeCol = ss.GetActiveCol();
var activeRow = ss.GetActiveRow();
if (activeCol != 8 && activeCol !== 9) {
var cell = ss.GetCellByRowCol(activeRow, 8);
cell.removeAttribute("FpCellType");
ss.SetValue(activeRow, 8, "点击保存", true);
cell.setAttribute("FpCellType", "readonly");
}
}
function btnOver(theTD, ftbName, imageOver, imageDown) {
event.srcElement.style.backgroundColor = "lightsteelblue";
}
function btnOut(theTD, ftbName, imageOver, imageDown) {
event.srcElement.style.backgroundColor = "";
}
function setFocus(ss) {
if (document.all != null) {
ss.focus();
} else {
the_fpSpread.SetPageActiveSpread(ss);
the_fpSpread.Focus(ss);
}
}
function ColumnWidth() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
var newWidth = prompt("请输入列宽:", spread.Columns(spread.GetActiveCol()).GetWidth());
if (!isNaN(newWidth) && newWidth != null)
spread.CallBack("ColWidth-" + newWidth);
//spread.SetColWidth(spread.GetActiveCol(), newWidth);
}
function SetDataArea() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("SetDataArea");
}
function DeleteDataArea() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
var result = confirm("删除数据区域的同时,会删除全部的单元格绑定,是否删除?");
if (result == true) {
spread.CallBack("DeleteDataArea");
}
}
function DeleteDataField() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("DeleteDataField");
}
function InsertRow() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("InsertRow");
}
function DeleteRow() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("DeleteRow");
}
function InsertColumn() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("InsertColumn");
}
function DeleteColumn() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("DeleteColumn");
}
function RowHeight() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
var newHeight = prompt("请输入行高:", spread.Rows(spread.GetActiveRow()).GetHeight());
if (!isNaN(newHeight) && newHeight != null)
spread.CallBack("RowHeight-" + newHeight);
//spread.SetRowHeight(spread.GetActiveRow(), newHeight);
}
function CellLock() {
var spread = document.getElementById("<%=fpTemplate.ClientID %>");
spread.CallBack("CellLock");
}
function btnSave() {
SpreadCallBack();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("SaveTemplate");
setFocus(ss);
}
function FontBold() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontBold");
setFocus(ss);
}
function FontItalic() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontItalic");
setFocus(ss);
}
function SetDataField(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("DataField." + name);
setFocus(ss);
}
function SetFontName(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontName." + name);
setFocus(ss);
}
function SetLockColor(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("LockColor." + name);
setFocus(ss);
}
function SetProtect(name) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("Protect." + name);
setFocus(ss);
}
function SetFontSize(size) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontSize." + size);
setFocus(ss);
}
function FontUnderline() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("FontUnderline");
setFocus(ss);
}
function AlignLeft() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("AlignLeft");
setFocus(ss);
}
function AlignCenter() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("AlignCenter");
setFocus(ss);
}
function MergeCell() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("MergeCell");
setFocus(ss);
}
function AlignRight() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("AlignRight");
setFocus(ss);
}
function SetForeColor(color) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("ForeColor." + color);
setFocus(ss);
}
function SetBackColor(color) {
if (document.all != null) document.body.focus();
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.CallBack("BackColor." + color);
setFocus(ss);
}
function Cut() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.Clear();
}
function Copy() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.Copy();
}
function Paste() {
var ss = document.getElementById("<%=fpTemplate.ClientID %>");
ss.Paste();
}
</script>
<script type="text/javascript">
window.addEventListener("load", moreInit, false);
function moreInit() {
var spread = document.getElementById("<%= fpTemplate.ClientID %>");
if (spread.addEventListener) {
spread.addEventListener("MenuItemClicked", spread_MenuItemClicked, false);
}
else {
spread.onMenuItemClicked = spread_MenuItemClicked;
}
if (document.all) {
// IE
if (spread.addEventListener) {
// IE9
//spread.addEventListener("CallBackStart", CallBackStart, false);
spread.addEventListener("CallBackStopped", CallBackStopped, false);
}
else {
// Other versions of IE and IE9 quirks mode (no doctype set)
//spread.onCallBackStart = CallBackStart;
spread.onCallBackStopped = CallBackStopped;
}
}
else {
// Firefox
//spread.addEventListener("CallBackStart", CallBackStart, false);
spread.addEventListener("CallBackStopped", CallBackStopped, false);
}
}
function CallBackStart(event) {
if (event == null) event = window.event;
alert("start");
}
function CallBackStopped(event) {
switch (event.command) {
case "DeleteDataArea":
alert("数据区域删除成功!");
break;
case "SetDataArea":
alert("数据区域设置成功!");
break;
case "SaveTemplate":
alert("模板保存成功!");
break;
default:
}
}
function spread_MenuItemClicked(event) {
var spread = document.getElementById("<%= fpTemplate.ClientID %>");
var menuItem = event.SelectedItem;
var itemText = menuItem.childNodes[1].childNodes[0].data;
spread.CallBack("DataField." + itemText);
setFocus(spread);
event.cancel = true; // skip posting back to server, since we handled all things from client side
}
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="HeaderTitle" runat="server">
模板数据源&amp;样式修改
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div class="options" style="overflow: hidden; background-image: url(Resources/images/ajax/toolbar.Horizontal.background1.gif);
width: 97%;">
<table id="Table3" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<table id="Table4" cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
<img alt="" src="Resources/images/ajax/toolbar.Horizontal.start.gif" border="0" />
</td>
<td class="btnsave" id="btnsave" onmouseover="btnOver();" onclick="btnSave();" onmouseout="btnOut();">
<img alt="保存" title="保存" src="Resources/images/ajax/save.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td style="padding-left: 4px;">
<asp:DropDownList ID="lstDataFields" runat="server" Style="width: 100px" TabIndex="-1"
onchange="SetDataField(this[this.selectedIndex].text);this.selectedIndex=0;">
<asp:ListItem>数据字段</asp:ListItem>
</asp:DropDownList>
</td>
<td class="btnsave" id="Td5" onmouseover="btnOver();" onclick="SetDataArea();" onmouseout="btnOut();">
<img alt="设置动态行" title="设置动态行" src="Resources/images/ajax/SetDataArea.png" border="0" />
</td>
<td class="btnsave" id="Td6" onmouseover="btnOver();" onclick="DeleteDataArea();"
onmouseout="btnOut();">
<img alt="清除动态行" title="清除动态行" src="Resources/images/ajax/DeleteDataArea.png" border="0" />
</td>
<td class="btnsave" id="Td7" onmouseover="btnOver();" onclick="DeleteDataField();"
onmouseout="btnOut();">
<img alt="清除单元格绑定" title="清除单元格绑定" src="Resources/images/ajax/DeleteDataField.png"
border="0" />
</td>
<td class="btnColumnWidth" id="Td4" onmouseover="btnOver();" onclick="CellLock();"
onmouseout="btnOut();">
<img alt="锁定/解锁" title="锁定/解锁" src="Resources/images/ajax/lock.png" border="0" width="20" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Copy" onmouseover="btnOver();" onclick="Copy();"
onmouseout="btnOut();">
<img height="20" alt="复制" title="复制" src="Resources/images/ajax/copy.gif" width="21"
border="0" />
</td>
<td class="btnnormal" id="ss_btn_Cut" onmouseover="btnOver();" onclick="Cut();" onmouseout="btnOut();">
<img height="20" alt="剪切" title="剪切" src="Resources/images/ajax/cut.gif" width="21"
border="0" />
</td>
<td class="btnnormal" id="ss_btn_Paste" onmouseover="btnOver();" onclick="Paste();"
onmouseout="btnOut();">
<img height="20" alt="粘贴" title="粘贴" src="Resources/images/ajax/paste.gif" width="21"
border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Bold" onmouseover="btnOver();" onclick="FontBold();"
onmouseout="btnOut();">
<img alt="粗体" title="粗体" src="Resources/images/ajax/Bold.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Italic" onmouseover="btnOver();" onclick="FontItalic();"
onmouseout="btnOut();">
<img alt="斜体" title="斜体" src="Resources/images/ajax/Italic.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Underline" onmouseover="btnOver();" onclick="FontUnderline();"
onmouseout="btnOut();">
<img alt="下划线" title="下划线" src="Resources/images/ajax/Underline.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Justify Left" onmouseover="btnOver();" onclick="AlignLeft();"
onmouseout="btnOut();">
<img alt="左对齐" title="左对齐" src="Resources/images/ajax/AlignLeft.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Justify Center" onmouseover="btnOver();" onclick="AlignCenter();"
onmouseout="btnOut();">
<img alt="居中对齐" title="居中对齐" src="Resources/images/ajax/AlignMiddle.png" border="0" />
</td>
<td class="btnnormal" id="ss_btn_Justify Right" onmouseover="btnOver();" onclick="AlignRight();"
onmouseout="btnOut();">
<img alt="右对齐" title="右对齐" src="Resources/images/ajax/AlignRight.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnmerge" id="btnmerge" onmouseover="btnOver();" onclick="MergeCell();"
onmouseout="btnOut();">
<img alt="合并" title="合并" src="Resources/images/ajax/MergeCenter.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnInsertRow" id="btnInsertRow" onmouseover="btnOver();" onclick="InsertRow();"
onmouseout="btnOut();">
<img alt="插入行" title="插入行" src="Resources/images/ajax/InsertRow.png" border="0" />
</td>
<td class="btnDeleteRow" id="btnDeleteRow" onmouseover="btnOver();" onclick="DeleteRow();"
onmouseout="btnOut();">
<img alt="删除行" title="删除行" src="Resources/images/ajax/DeleteRow.png" border="0" />
</td>
<td class="btnRowHeight" id="btnRowHeight" onmouseover="btnOver();" onclick="RowHeight();"
onmouseout="btnOut();">
<img alt="行高" title="行高" src="Resources/images/ajax/RowHeight.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td class="btnInsertColumn" id="btnInsertColumn" onmouseover="btnOver();" onclick="InsertColumn();"
onmouseout="btnOut();">
<img alt="插入列" title="插入列" src="Resources/images/ajax/InsertColumn.png" border="0" />
</td>
<td class="btnDeleteColumn" id="btnDeleteColumn" onmouseover="btnOver();" onclick="DeleteColumn();"
onmouseout="btnOut();">
<img alt="删除列" title="删除列" src="Resources/images/ajax/DeleteColumn.png" border="0" />
</td>
<td class="btnColumnWidth" id="btnColumnWidth" onmouseover="btnOver();" onclick="ColumnWidth();"
onmouseout="btnOut();">
<img alt="列宽" title="列宽" src="Resources/images/ajax/ColumnWidth.png" border="0" />
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
<td style="padding-left: 4px">
<select style="width: 60px" tabindex="-1" onchange="SetFontName(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">字体</option>
<option value="Arial">Arial</option>
<option value="Courier New">Courier New</option>
<option value="Garamond">Garamond</option>
<option value="Georgia">Georgia</option>
<option value="Tahoma">Tahoma</option>
<option value="Times New Roman">Times</option>
<option value="Verdana">Verdana</option>
</select>
</td>
<td style="padding-left: 4px">
<select tabindex="-1" style="width: 60px" onchange="SetFontSize(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">字号</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select>
</td>
<td style="padding-left: 4px">
<select style="width: 75px" tabindex="-1" onchange="SetForeColor(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">前景色</option>
<option style="color: #ffffff; background-color: black" value="#000000">Black</option>
<option style="background-color: gray" value="#808080">Gray</option>
<option style="background-color: #A9A9A9" value="#A9A9A9">DarkGray</option>
<option style="background-color: #D3D3D3" value="#D3D3D3">LightGray</option>
<option style="background-color: white" value="#FFFFFF">White</option>
<option style="background-color: #7FFFD4" value="#7FFFD4">Aquamarine</option>
<option style="background-color: blue" value="#0000FF">Blue</option>
<option style="color: #ffffff; background-color: navy" value="#000080">Navy</option>
<option style="color: #ffffff; background-color: purple" value="#800080">Purple</option>
<option style="background-color: #FF1493" value="#FF1493">DeepPink</option>
<option style="background-color: #EE82EE" value="#EE82EE">Violet</option>
<option style="background-color: #FFC0CB" value="#FFC0CB">Pink</option>
<option style="color: #ffffff; background-color: #006400" value="#006400">DarkGreen</option>
<option style="color: #ffffff; background-color: green" value="#008000">Green</option>
<option style="background-color: #9ACD32" value="#9ACD32">YellowGreen</option>
<option style="background-color: yellow" value="#FFFF00">Yellow</option>
<option style="background-color: #FFA500" value="#FFA500">Orange</option>
<option style="background-color: red" value="#FF0000">Red</option>
<option style="background-color: #A52A2A" value="#A52A2A">Brown</option>
<option style="background-color: #DEB887" value="#DEB887">BurlyWood</option>
<option style="background-color: #F5F5DC" value="#F5F5DC">Beige</option>
</select>
</td>
<td style="padding-left: 4px">
<select style="width: 75px" tabindex="-1" onchange="SetBackColor(this[this.selectedIndex].text);this.selectedIndex=0;">
<option value="" selected="selected">背景色</option>
<option style="color: #ffffff; background-color: black" value="#000000">Black</option>
<option style="background-color: gray" value="#808080">Gray</option>
<option style="background-color: #A9A9A9" value="#A9A9A9">DarkGray</option>
<option style="background-color: #D3D3D3" value="#D3D3D3">LightGray</option>
<option style="background-color: white" value="#FFFFFF">White</option>
<option style="background-color: #7FFFD4" value="#7FFFD4">Aquamarine</option>
<option style="background-color: blue" value="#0000FF">Blue</option>
<option style="color: #ffffff; background-color: navy" value="#000080">Navy</option>
<option style="color: #ffffff; background-color: purple" value="#800080">Purple</option>
<option style="background-color: #FF1493" value="#FF1493">DeepPink</option>
<option style="background-color: #EE82EE" value="#EE82EE">Violet</option>
<option style="background-color: #FFC0CB" value="#FFC0CB">Pink</option>
<option style="color: #ffffff; background-color: #006400" value="#006400">DarkGreen</option>
<option style="color: #ffffff; background-color: green" value="#008000">Green</option>
<option style="background-color: #9ACD32" value="#9ACD32">YellowGreen</option>
<option style="background-color: yellow" value="#FFFF00">Yellow</option>
<option style="background-color: #FFA500" value="#FFA500">Orange</option>
<option style="background-color: red" value="#FF0000">Red</option>
<option style="background-color: #A52A2A" value="#A52A2A">Brown</option>
<option style="background-color: #DEB887" value="#DEB887">BurlyWood</option>
<option style="background-color: #F5F5DC" value="#F5F5DC">Beige</option>
</select>
</td>
<td>
<img alt="" src="Resources/images/ajax/separator.Horizontal.gif" border="0" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<div style="width: 1010px; margin-left: 0px; margin-top: 0px; margin-bottom: 150px;
border-width: 1px; border-color: Black; border-style: none; position: absolute;">
<div>
<FarPoint:FpSpread ID="fpTemplate" runat="server" BorderColor="Black" BorderStyle="Solid"
BorderWidth="1px" Height="600px" Width="100%" ActiveSheetViewIndex="0" DesignString="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;Spread&gt;&lt;NamedStyles&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-0&quot; Parent=&quot;DataAreaDefault&quot;&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;AllowWrap&gt;False&lt;/AllowWrap&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;11pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;0&lt;/GdiCharSet&gt;&lt;ForeColor&gt;WindowText&lt;/ForeColor&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Bottom&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-1&quot;&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;AllowWrap&gt;False&lt;/AllowWrap&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;18pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;0&lt;/GdiCharSet&gt;&lt;ForeColor&gt;WindowText&lt;/ForeColor&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Bottom&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-2&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-3&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;False&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-4&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.TextCellType&quot;&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;ErrorMsg&gt;最大文本长度为{0}&lt;/ErrorMsg&gt;&lt;TextCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-5&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Left&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-6&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Left&lt;/HorizontalAlign&gt;&lt;Locked&gt;False&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-7&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;18pt&lt;/Size&gt;&lt;Bold&gt;True&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-8&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;False&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;/NamedStyles&gt;&lt;/Spread&gt;"
OnButtonCommand="fpTemplate_ButtonCommand">
<TouchInfo SelectionGripperLineColor=""></TouchInfo>
<CommandBar ButtonFaceColor="Control" ButtonHighlightColor="ControlLightLight" ButtonShadowColor="ControlDark">
<Background BackgroundImageUrl="SPREADCLIENTPATH:/img/cbbg.gif"></Background>
</CommandBar>
<Sheets>
<FarPoint:SheetView SheetName="项目情况" DesignString="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;Sheet&gt;&lt;Data&gt;&lt;RowHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;7&quot; columns=&quot;1&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;/RowHeader&gt;&lt;ColumnHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;1&quot; columns=&quot;9&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;/ColumnHeader&gt;&lt;DataArea class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;7&quot; columns=&quot;9&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;100&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;SheetName&gt;项目情况&lt;/SheetName&gt;&lt;NamedExpressions&gt;&lt;NamedExpression&gt;&lt;Name&gt;QYDM&lt;/Name&gt;&lt;Value&gt;项目情况!R3C2&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;SSZX&lt;/Name&gt;&lt;Value&gt;项目情况!R2C8&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;SSHY&lt;/Name&gt;&lt;Value&gt;项目情况!R2C4&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;QYMC&lt;/Name&gt;&lt;Value&gt;项目情况!R3C4&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;ZYPJ&lt;/Name&gt;&lt;Value&gt;项目情况!R6C2&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;XMMC&lt;/Name&gt;&lt;Value&gt;项目情况!R4C2&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;XMQZNX&lt;/Name&gt;&lt;Value&gt;项目情况!R5C9&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;ZXDM&lt;/Name&gt;&lt;Value&gt;项目情况!R2C6&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;PJYY&lt;/Name&gt;&lt;Value&gt;项目情况!R7C2&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;XMZZR&lt;/Name&gt;&lt;Value&gt;项目情况!R3C9&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;XMJSDD&lt;/Name&gt;&lt;Value&gt;项目情况!R5C2&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;ZRRLXDH&lt;/Name&gt;&lt;Value&gt;项目情况!R4C9&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;NamedExpression&gt;&lt;Name&gt;HYDM&lt;/Name&gt;&lt;Value&gt;项目情况!R2C2&lt;/Value&gt;&lt;/NamedExpression&gt;&lt;/NamedExpressions&gt;&lt;Cells&gt;&lt;Cell row=&quot;0&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;项 目 基 本 情 况 表&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;1&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;行业代码&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;1&quot; column=&quot;2&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;所属行业&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;1&quot; column=&quot;4&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;专项代码&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;1&quot; column=&quot;6&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;所属专项&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;2&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;企业代码&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;2&quot; column=&quot;2&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;企业名称&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;2&quot; column=&quot;7&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;项目责任人&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;3&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;项目名称&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;3&quot; column=&quot;7&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;责任人联系电话&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;4&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;项目建设地点&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;4&quot; column=&quot;7&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;项目起止年限&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;5&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;发展的主要瓶颈:
1、产品现状(能力、水平、市场占有率、国内每年进口总量)等;
2、与国际水平相比差距;&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;6&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;形成瓶颈的原因:
(指主要生产环节存在的工艺、技术、装备等方面的差距)&lt;/Data&gt;&lt;/Cell&gt;&lt;/Cells&gt;&lt;/DataArea&gt;&lt;SheetCorner class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;1&quot; columns=&quot;1&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;/SheetCorner&gt;&lt;ColumnFooter class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;1&quot; columns=&quot;9&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;/ColumnFooter&gt;&lt;/Data&gt;&lt;Presentation&gt;&lt;Protect&gt;False&lt;/Protect&gt;&lt;ActiveSkin class=&quot;dm&quot;&gt;&lt;Name&gt;Office2013&lt;/Name&gt;&lt;BackColor&gt;Empty&lt;/BackColor&gt;&lt;CellBackColor&gt;Empty&lt;/CellBackColor&gt;&lt;CellForeColor&gt;#00003a&lt;/CellForeColor&gt;&lt;CellSpacing&gt;0&lt;/CellSpacing&gt;&lt;GridLines&gt;Both&lt;/GridLines&gt;&lt;GridLineColor&gt;#d0d7e5&lt;/GridLineColor&gt;&lt;HeaderBackColor&gt;White&lt;/HeaderBackColor&gt;&lt;HeaderForeColor&gt;Empty&lt;/HeaderForeColor&gt;&lt;FlatColumnHeader&gt;False&lt;/FlatColumnHeader&gt;&lt;FooterBackColor&gt;Empty&lt;/FooterBackColor&gt;&lt;FooterForeColor&gt;Empty&lt;/FooterForeColor&gt;&lt;FlatColumnFooter&gt;False&lt;/FlatColumnFooter&gt;&lt;FlatRowHeader&gt;False&lt;/FlatRowHeader&gt;&lt;HeaderFontBold&gt;False&lt;/HeaderFontBold&gt;&lt;FooterFontBold&gt;False&lt;/FooterFontBold&gt;&lt;SelectionBackColor&gt;#c6c6c6&lt;/SelectionBackColor&gt;&lt;SelectionForeColor&gt;#2d0000&lt;/SelectionForeColor&gt;&lt;EvenRowBackColor&gt;Empty&lt;/EvenRowBackColor&gt;&lt;OddRowBackColor&gt;Empty&lt;/OddRowBackColor&gt;&lt;ShowColumnHeader&gt;True&lt;/ShowColumnHeader&gt;&lt;ShowColumnFooter&gt;False&lt;/ShowColumnFooter&gt;&lt;ShowRowHeader&gt;True&lt;/ShowRowHeader&gt;&lt;ColumnHeaderBackground class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/tp.png&lt;/BackgroundImageUrl&gt;&lt;SelectedBackgroundImageUrl&gt;SPREADCLIENTPATH:/img/chm13.gif&lt;/SelectedBackgroundImageUrl&gt;&lt;BackgroundPosition&gt;left bottom&lt;/BackgroundPosition&gt;&lt;/ColumnHeaderBackground&gt;&lt;RowHeaderBackground class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/tp.png&lt;/BackgroundImageUrl&gt;&lt;SelectedBackgroundImageUrl&gt;SPREADCLIENTPATH:/img/rhm13.gif&lt;/SelectedBackgroundImageUrl&gt;&lt;BackgroundPosition&gt;right top&lt;/BackgroundPosition&gt;&lt;/RowHeaderBackground&gt;&lt;SheetCornerBackground class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/tp.png&lt;/BackgroundImageUrl&gt;&lt;SelectedBackgroundImageUrl&gt;SPREADCLIENTPATH:/img/hm13.gif&lt;/SelectedBackgroundImageUrl&gt;&lt;BackgroundPosition&gt;left bottom&lt;/BackgroundPosition&gt;&lt;/SheetCornerBackground&gt;&lt;HeaderGrayAreaColor&gt;White&lt;/HeaderGrayAreaColor&gt;&lt;FilterBarBackColor&gt;White&lt;/FilterBarBackColor&gt;&lt;FilterBarForeColor&gt;Empty&lt;/FilterBarForeColor&gt;&lt;FilterBarHeaderBackColor&gt;White&lt;/FilterBarHeaderBackColor&gt;&lt;FilterBarHeaderForeColor&gt;Empty&lt;/FilterBarHeaderForeColor&gt;&lt;ShowFilterBar&gt;False&lt;/ShowFilterBar&gt;&lt;FilterBarHeaderParent&gt;RowHeaderDefault&lt;/FilterBarHeaderParent&gt;&lt;FilterBarParent&gt;FilterBarDefault&lt;/FilterBarParent&gt;&lt;/ActiveSkin&gt;&lt;HeaderGrayAreaColor&gt;White&lt;/HeaderGrayAreaColor&gt;&lt;AxisModels&gt;&lt;Row class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;20&quot; orientation=&quot;Vertical&quot; count=&quot;7&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;Size&gt;20&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;0&quot;&gt;&lt;Size&gt;40&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;1&quot;&gt;&lt;Size&gt;27&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;2&quot;&gt;&lt;Size&gt;27&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;3&quot;&gt;&lt;Size&gt;27&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;4&quot;&gt;&lt;Size&gt;27&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;5&quot;&gt;&lt;Size&gt;93&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;6&quot;&gt;&lt;Size&gt;80&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/Row&gt;&lt;Column class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;64&quot; orientation=&quot;Horizontal&quot; count=&quot;9&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;SortIndicator&gt;Ascending&lt;/SortIndicator&gt;&lt;Size&gt;64&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;0&quot;&gt;&lt;Size&gt;194&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;1&quot;&gt;&lt;Size&gt;89&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;2&quot;&gt;&lt;Size&gt;89&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;3&quot;&gt;&lt;Size&gt;89&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;4&quot;&gt;&lt;Size&gt;89&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;5&quot;&gt;&lt;Size&gt;89&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;6&quot;&gt;&lt;Size&gt;89&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;7&quot;&gt;&lt;Size&gt;96&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;8&quot;&gt;&lt;Size&gt;110&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/Column&gt;&lt;RowHeaderColumn class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;40&quot; orientation=&quot;Horizontal&quot; count=&quot;1&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;SortIndicator&gt;Ascending&lt;/SortIndicator&gt;&lt;Size&gt;40&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/RowHeaderColumn&gt;&lt;ColumnHeaderRow class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;22&quot; orientation=&quot;Vertical&quot; count=&quot;1&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;Size&gt;22&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/ColumnHeaderRow&gt;&lt;ColumnFooterRow class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;22&quot; orientation=&quot;Vertical&quot; count=&quot;1&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;Size&gt;22&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/ColumnFooterRow&gt;&lt;/AxisModels&gt;&lt;SpanModels&gt;&lt;DataArea class=&quot;FarPoint.Web.Spread.Model.DefaultSheetSpanModel&quot;&gt;&lt;CellRange Row=&quot;6&quot; Column=&quot;1&quot; RowCount=&quot;1&quot; ColumnCount=&quot;8&quot; /&gt;&lt;CellRange Row=&quot;0&quot; Column=&quot;0&quot; RowCount=&quot;1&quot; ColumnCount=&quot;9&quot; /&gt;&lt;CellRange Row=&quot;1&quot; Column=&quot;7&quot; RowCount=&quot;1&quot; ColumnCount=&quot;2&quot; /&gt;&lt;CellRange Row=&quot;2&quot; Column=&quot;3&quot; RowCount=&quot;1&quot; ColumnCount=&quot;4&quot; /&gt;&lt;CellRange Row=&quot;3&quot; Column=&quot;1&quot; RowCount=&quot;1&quot; ColumnCount=&quot;6&quot; /&gt;&lt;CellRange Row=&quot;5&quot; Column=&quot;1&quot; RowCount=&quot;1&quot; ColumnCount=&quot;8&quot; /&gt;&lt;CellRange Row=&quot;4&quot; Column=&quot;1&quot; RowCount=&quot;1&quot; ColumnCount=&quot;6&quot; /&gt;&lt;/DataArea&gt;&lt;/SpanModels&gt;&lt;StyleModels&gt;&lt;RowHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;7&quot; Columns=&quot;1&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;RowHeaderDefault&quot;&gt;&lt;BackColor&gt;White&lt;/BackColor&gt;&lt;Background class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/tp.png&lt;/BackgroundImageUrl&gt;&lt;SelectedBackgroundImageUrl&gt;SPREADCLIENTPATH:/img/rhm13.gif&lt;/SelectedBackgroundImageUrl&gt;&lt;BackgroundPosition&gt;right top&lt;/BackgroundPosition&gt;&lt;/Background&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/RowHeader&gt;&lt;ColumnHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;1&quot; Columns=&quot;9&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;ColumnHeaderDefault&quot;&gt;&lt;BackColor&gt;White&lt;/BackColor&gt;&lt;Background class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/tp.png&lt;/BackgroundImageUrl&gt;&lt;SelectedBackgroundImageUrl&gt;SPREADCLIENTPATH:/img/chm13.gif&lt;/SelectedBackgroundImageUrl&gt;&lt;BackgroundPosition&gt;left bottom&lt;/BackgroundPosition&gt;&lt;/Background&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/ColumnHeader&gt;&lt;DataArea class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;7&quot; Columns=&quot;9&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle Name=&quot;x-1-0&quot; /&gt;&lt;RowStyles&gt;&lt;RowStyle Index=&quot;0&quot; Name=&quot;x-1-1&quot; /&gt;&lt;/RowStyles&gt;&lt;CellStyles&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;0&quot;&gt;&lt;d class=&quot;FarPoint.Web.Spread.Border&quot; xn=&quot;1&quot;&gt;&lt;b c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;/d&gt;&lt;c class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;i&gt;False&lt;/i&gt;&lt;l&gt;True&lt;/l&gt;&lt;g /&gt;&lt;/c&gt;&lt;n&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;ns&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;/ns&gt;&lt;s&gt;18pt&lt;/s&gt;&lt;b&gt;True&lt;/b&gt;&lt;/n&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;h&gt;Center&lt;/h&gt;&lt;l&gt;True&lt;/l&gt;&lt;v&gt;Middle&lt;/v&gt;&lt;/CellStyle&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;1&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;2&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;3&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;4&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;5&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;6&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;7&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;0&quot; Column=&quot;8&quot; Name=&quot;x-1-7&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;0&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;1&quot; Name=&quot;x-1-3&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;2&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;3&quot; Name=&quot;x-1-3&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;4&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;5&quot; Name=&quot;x-1-3&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;6&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;7&quot;&gt;&lt;d class=&quot;FarPoint.Web.Spread.Border&quot; xn=&quot;1&quot;&gt;&lt;b c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;l c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;r c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;t c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;/d&gt;&lt;c class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;i&gt;False&lt;/i&gt;&lt;l&gt;True&lt;/l&gt;&lt;g /&gt;&lt;/c&gt;&lt;n&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;ns&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;/ns&gt;&lt;s&gt;9pt&lt;/s&gt;&lt;/n&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;h&gt;Center&lt;/h&gt;&lt;l&gt;False&lt;/l&gt;&lt;v&gt;Middle&lt;/v&gt;&lt;/CellStyle&gt;&lt;CellStyle Row=&quot;1&quot; Column=&quot;8&quot; Name=&quot;x-1-8&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;0&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;1&quot; Name=&quot;x-1-3&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;2&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;3&quot;&gt;&lt;d class=&quot;FarPoint.Web.Spread.Border&quot; xn=&quot;1&quot;&gt;&lt;b c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;l c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;r c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;t c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;/d&gt;&lt;c class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;i&gt;False&lt;/i&gt;&lt;l&gt;True&lt;/l&gt;&lt;g /&gt;&lt;/c&gt;&lt;n&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;ns&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;/ns&gt;&lt;s&gt;9pt&lt;/s&gt;&lt;/n&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;h&gt;Center&lt;/h&gt;&lt;l&gt;False&lt;/l&gt;&lt;v&gt;Middle&lt;/v&gt;&lt;/CellStyle&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;4&quot; Name=&quot;x-1-8&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;5&quot; Name=&quot;x-1-8&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;6&quot; Name=&quot;x-1-8&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;7&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;2&quot; Column=&quot;8&quot; Name=&quot;x-1-3&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;0&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;1&quot;&gt;&lt;d class=&quot;FarPoint.Web.Spread.Border&quot; xn=&quot;1&quot;&gt;&lt;b c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;l c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;r c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;t c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;/d&gt;&lt;c class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;i&gt;False&lt;/i&gt;&lt;l&gt;True&lt;/l&gt;&lt;g /&gt;&lt;/c&gt;&lt;n&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;ns&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;/ns&gt;&lt;s&gt;9pt&lt;/s&gt;&lt;/n&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;h&gt;Left&lt;/h&gt;&lt;l&gt;False&lt;/l&gt;&lt;v&gt;Middle&lt;/v&gt;&lt;/CellStyle&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;2&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;3&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;4&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;5&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;6&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;7&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;3&quot; Column=&quot;8&quot; Name=&quot;x-1-3&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;0&quot; Name=&quot;x-1-2&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;1&quot;&gt;&lt;d class=&quot;FarPoint.Web.Spread.Border&quot; xn=&quot;1&quot;&gt;&lt;b c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;l c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;r c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;t c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;/d&gt;&lt;c class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;i&gt;False&lt;/i&gt;&lt;l&gt;True&lt;/l&gt;&lt;g /&gt;&lt;/c&gt;&lt;n&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;ns&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;/ns&gt;&lt;s&gt;9pt&lt;/s&gt;&lt;/n&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;h&gt;Left&lt;/h&gt;&lt;l&gt;False&lt;/l&gt;&lt;v&gt;Middle&lt;/v&gt;&lt;/CellStyle&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;2&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;3&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;4&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;5&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;6&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;7&quot; Name=&quot;x-1-4&quot; /&gt;&lt;CellStyle Row=&quot;4&quot; Column=&quot;8&quot; Name=&quot;x-1-3&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;0&quot; Name=&quot;x-1-5&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;1&quot;&gt;&lt;d class=&quot;FarPoint.Web.Spread.Border&quot; xn=&quot;1&quot;&gt;&lt;b c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;l c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;r c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;t c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;/d&gt;&lt;c class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;i&gt;False&lt;/i&gt;&lt;l&gt;True&lt;/l&gt;&lt;g /&gt;&lt;/c&gt;&lt;n&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;ns&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;/ns&gt;&lt;s&gt;9pt&lt;/s&gt;&lt;/n&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;h&gt;Left&lt;/h&gt;&lt;l&gt;False&lt;/l&gt;&lt;v&gt;Middle&lt;/v&gt;&lt;/CellStyle&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;2&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;3&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;4&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;5&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;6&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;7&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;5&quot; Column=&quot;8&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;0&quot; Name=&quot;x-1-5&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;1&quot;&gt;&lt;d class=&quot;FarPoint.Web.Spread.Border&quot; xn=&quot;1&quot;&gt;&lt;b c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;l c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;r c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;t c=&quot;WindowText&quot; s=&quot;1&quot; t=&quot;Solid&quot; /&gt;&lt;/d&gt;&lt;c class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;i&gt;False&lt;/i&gt;&lt;l&gt;True&lt;/l&gt;&lt;g /&gt;&lt;/c&gt;&lt;n&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;ns&gt;&lt;n&gt;微软雅黑&lt;/n&gt;&lt;/ns&gt;&lt;s&gt;9pt&lt;/s&gt;&lt;/n&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;h&gt;Left&lt;/h&gt;&lt;l&gt;False&lt;/l&gt;&lt;v&gt;Middle&lt;/v&gt;&lt;/CellStyle&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;2&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;3&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;4&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;5&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;6&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;7&quot; Name=&quot;x-1-6&quot; /&gt;&lt;CellStyle Row=&quot;6&quot; Column=&quot;8&quot; Name=&quot;x-1-6&quot; /&gt;&lt;/CellStyles&gt;&lt;ConditionalFormatCollections /&gt;&lt;/DataArea&gt;&lt;SheetCorner class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;1&quot; Columns=&quot;1&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;CornerDefault&quot;&gt;&lt;BackColor&gt;White&lt;/BackColor&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot; Size=&quot;1&quot; Style=&quot;Solid&quot;&gt;&lt;Bottom Color=&quot;ControlDark&quot; /&gt;&lt;Left Size=&quot;0&quot; /&gt;&lt;Right Color=&quot;ControlDark&quot; /&gt;&lt;Top Size=&quot;0&quot; /&gt;&lt;/Border&gt;&lt;Background class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/tp.png&lt;/BackgroundImageUrl&gt;&lt;SelectedBackgroundImageUrl&gt;SPREADCLIENTPATH:/img/hm13.gif&lt;/SelectedBackgroundImageUrl&gt;&lt;BackgroundPosition&gt;left bottom&lt;/BackgroundPosition&gt;&lt;/Background&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/SheetCorner&gt;&lt;ColumnFooter class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;1&quot; Columns=&quot;9&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;ColumnFooterDefault&quot;&gt;&lt;BackColor&gt;White&lt;/BackColor&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/ColumnFooter&gt;&lt;/StyleModels&gt;&lt;MessageRowStyle class=&quot;FarPoint.Web.Spread.Appearance&quot;&gt;&lt;BackColor&gt;LightYellow&lt;/BackColor&gt;&lt;ForeColor&gt;Red&lt;/ForeColor&gt;&lt;/MessageRowStyle&gt;&lt;SheetCornerStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;CornerDefault&quot;&gt;&lt;BackColor&gt;White&lt;/BackColor&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot; Size=&quot;1&quot; Style=&quot;Solid&quot;&gt;&lt;Bottom Color=&quot;ControlDark&quot; /&gt;&lt;Left Size=&quot;0&quot; /&gt;&lt;Right Color=&quot;ControlDark&quot; /&gt;&lt;Top Size=&quot;0&quot; /&gt;&lt;/Border&gt;&lt;Background class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/tp.png&lt;/BackgroundImageUrl&gt;&lt;SelectedBackgroundImageUrl&gt;SPREADCLIENTPATH:/img/hm13.gif&lt;/SelectedBackgroundImageUrl&gt;&lt;BackgroundPosition&gt;left bottom&lt;/BackgroundPosition&gt;&lt;/Background&gt;&lt;/SheetCornerStyle&gt;&lt;AllowLoadOnDemand&gt;false&lt;/AllowLoadOnDemand&gt;&lt;LoadRowIncrement &gt;10&lt;/LoadRowIncrement &gt;&lt;LoadInitRowCount &gt;30&lt;/LoadInitRowCount &gt;&lt;LoadOnDemandMode &gt;Standard&lt;/LoadOnDemandMode &gt;&lt;LoadOnDemandInterval &gt;500&lt;/LoadOnDemandInterval &gt;&lt;LoadOnDemandTriggerMode &gt;Timed&lt;/LoadOnDemandTriggerMode &gt;&lt;LoadOffsetFromBottom &gt;0&lt;/LoadOffsetFromBottom &gt;&lt;AllowVirtualScrollPaging&gt;false&lt;/AllowVirtualScrollPaging&gt;&lt;VirtualScrollPagingPrevRowCount&gt;0&lt;/VirtualScrollPagingPrevRowCount&gt;&lt;VirtualScrollPagingFormatString&gt;第{page}页 共{count}页&lt;/VirtualScrollPagingFormatString&gt;&lt;TopRow&gt;0&lt;/TopRow&gt;&lt;PreviewRowStyle class=&quot;FarPoint.Web.Spread.PreviewRowInfo&quot; /&gt;&lt;FilterBar class=&quot;FarPoint.Web.Spread.FilterBar&quot;&gt;&lt;Height&gt;22&lt;/Height&gt;&lt;IndicatorCssClass /&gt;&lt;Style class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;2&quot; Columns=&quot;9&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;NamedStyles class=&quot;FarPoint.Web.Spread.NamedStyleCollection&quot;&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-0&quot; Parent=&quot;DataAreaDefault&quot;&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;AllowWrap&gt;False&lt;/AllowWrap&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;11pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;0&lt;/GdiCharSet&gt;&lt;ForeColor&gt;WindowText&lt;/ForeColor&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Bottom&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-1&quot;&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;AllowWrap&gt;False&lt;/AllowWrap&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;Calibri&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;18pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;0&lt;/GdiCharSet&gt;&lt;ForeColor&gt;WindowText&lt;/ForeColor&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Bottom&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-2&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-3&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;False&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-4&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.TextCellType&quot;&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;ErrorMsg&gt;最大文本长度为{0}&lt;/ErrorMsg&gt;&lt;TextCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-5&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Left&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-6&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Left&lt;/HorizontalAlign&gt;&lt;Locked&gt;False&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-7&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;18pt&lt;/Size&gt;&lt;Bold&gt;True&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;True&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;NamedStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Name=&quot;x-1-8&quot;&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot;&gt;&lt;Bottom Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Left Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Right Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;Top Color=&quot;WindowText&quot; Size=&quot;1&quot; Style=&quot;Solid&quot; /&gt;&lt;/Border&gt;&lt;CellType class=&quot;FarPoint.Web.Spread.GeneralCellType&quot;&gt;&lt;IsDateFormat&gt;False&lt;/IsDateFormat&gt;&lt;Multiline&gt;True&lt;/Multiline&gt;&lt;GeneralCellType /&gt;&lt;/CellType&gt;&lt;Font&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;Names&gt;&lt;Name&gt;微软雅黑&lt;/Name&gt;&lt;/Names&gt;&lt;Size&gt;9pt&lt;/Size&gt;&lt;Bold&gt;False&lt;/Bold&gt;&lt;Italic&gt;False&lt;/Italic&gt;&lt;Overline&gt;False&lt;/Overline&gt;&lt;Strikeout&gt;False&lt;/Strikeout&gt;&lt;Underline&gt;False&lt;/Underline&gt;&lt;/Font&gt;&lt;GdiCharSet&gt;134&lt;/GdiCharSet&gt;&lt;HorizontalAlign&gt;Center&lt;/HorizontalAlign&gt;&lt;Locked&gt;False&lt;/Locked&gt;&lt;VerticalAlign&gt;Middle&lt;/VerticalAlign&gt;&lt;/NamedStyle&gt;&lt;/NamedStyles&gt;&lt;RowStyles&gt;&lt;RowStyle Index=&quot;0&quot; class=&quot;FarPoint.Web.Spread.FilterBarStyleInfo&quot; Parent=&quot;FilterBarDefault&quot;&gt;&lt;BackColor&gt;White&lt;/BackColor&gt;&lt;/RowStyle&gt;&lt;RowStyle Index=&quot;1&quot; class=&quot;FarPoint.Web.Spread.FilterBarStyleInfo&quot; Parent=&quot;RowHeaderDefault&quot;&gt;&lt;BackColor&gt;White&lt;/BackColor&gt;&lt;/RowStyle&gt;&lt;/RowStyles&gt;&lt;ConditionalFormatCollections /&gt;&lt;/Style&gt;&lt;/FilterBar&gt;&lt;/Presentation&gt;&lt;Settings&gt;&lt;Name&gt;项目情况&lt;/Name&gt;&lt;Categories&gt;&lt;Appearance&gt;&lt;SelectionForeColor&gt;#2d0000&lt;/SelectionForeColor&gt;&lt;GridLineColor&gt;#d0d7e5&lt;/GridLineColor&gt;&lt;DefaultStyleName&gt;x-1-0&lt;/DefaultStyleName&gt;&lt;HeaderGrayAreaColor&gt;White&lt;/HeaderGrayAreaColor&gt;&lt;SelectionBackColor&gt;#c6c6c6&lt;/SelectionBackColor&gt;&lt;SelectionForeColor&gt;#2d0000&lt;/SelectionForeColor&gt;&lt;SelectionBorder class=&quot;FarPoint.Web.Spread.Border&quot; /&gt;&lt;/Appearance&gt;&lt;Behavior&gt;&lt;EditTemplateColumnCount&gt;2&lt;/EditTemplateColumnCount&gt;&lt;SelectionPolicy&gt;MultiRange&lt;/SelectionPolicy&gt;&lt;GroupBarText&gt;拖放一个列以便按照该列进行分组。&lt;/GroupBarText&gt;&lt;/Behavior&gt;&lt;Layout&gt;&lt;RowHeaderColumnCount&gt;1&lt;/RowHeaderColumnCount&gt;&lt;DefaultColumnWidth&gt;64&lt;/DefaultColumnWidth&gt;&lt;DefaultRowHeight&gt;20&lt;/DefaultRowHeight&gt;&lt;ColumnHeaderRowCount&gt;1&lt;/ColumnHeaderRowCount&gt;&lt;RowCount&gt;7&lt;/RowCount&gt;&lt;ColumnCount&gt;9&lt;/ColumnCount&gt;&lt;/Layout&gt;&lt;/Categories&gt;&lt;ActiveRow&gt;1&lt;/ActiveRow&gt;&lt;ActiveColumn&gt;1&lt;/ActiveColumn&gt;&lt;ColumnHeaderRowCount&gt;1&lt;/ColumnHeaderRowCount&gt;&lt;ColumnFooterRowCount&gt;1&lt;/ColumnFooterRowCount&gt;&lt;PrintInfo&gt;&lt;Header /&gt;&lt;Footer /&gt;&lt;ZoomFactor&gt;1&lt;/ZoomFactor&gt;&lt;FirstPageNumber&gt;1&lt;/FirstPageNumber&gt;&lt;Orientation&gt;Portrait&lt;/Orientation&gt;&lt;PrintType&gt;All&lt;/PrintType&gt;&lt;PageOrder&gt;DownThenOver&lt;/PageOrder&gt;&lt;BestFitCols&gt;False&lt;/BestFitCols&gt;&lt;BestFitRows&gt;False&lt;/BestFitRows&gt;&lt;PageStart&gt;-1&lt;/PageStart&gt;&lt;PageEnd&gt;-1&lt;/PageEnd&gt;&lt;ColStart&gt;-1&lt;/ColStart&gt;&lt;ColEnd&gt;-1&lt;/ColEnd&gt;&lt;RowStart&gt;-1&lt;/RowStart&gt;&lt;RowEnd&gt;-1&lt;/RowEnd&gt;&lt;ShowBorder&gt;False&lt;/ShowBorder&gt;&lt;ShowGrid&gt;False&lt;/ShowGrid&gt;&lt;ShowColor&gt;True&lt;/ShowColor&gt;&lt;ShowColumnHeader&gt;Hide&lt;/ShowColumnHeader&gt;&lt;ShowRowHeader&gt;Hide&lt;/ShowRowHeader&gt;&lt;ShowFilterBar&gt;Inherit&lt;/ShowFilterBar&gt;&lt;ShowColumnFooter&gt;Inherit&lt;/ShowColumnFooter&gt;&lt;ShowColumnFooterEachPage&gt;True&lt;/ShowColumnFooterEachPage&gt;&lt;ShowTitle&gt;True&lt;/ShowTitle&gt;&lt;ShowSubtitle&gt;True&lt;/ShowSubtitle&gt;&lt;UseMax&gt;True&lt;/UseMax&gt;&lt;UseSmartPrint&gt;False&lt;/UseSmartPrint&gt;&lt;Margin&gt;&lt;Top&gt;72&lt;/Top&gt;&lt;Left&gt;67&lt;/Left&gt;&lt;Right&gt;67&lt;/Right&gt;&lt;Bottom&gt;72&lt;/Bottom&gt;&lt;Header&gt;28&lt;/Header&gt;&lt;Footer&gt;28&lt;/Footer&gt;&lt;/Margin&gt;&lt;Opacity&gt;255&lt;/Opacity&gt;&lt;PrintNotes&gt;None&lt;/PrintNotes&gt;&lt;PaperSize&gt;&lt;Height&gt;1100&lt;/Height&gt;&lt;Kind&gt;Custom&lt;/Kind&gt;&lt;PaperName&gt;Letter&lt;/PaperName&gt;&lt;Width&gt;850&lt;/Width&gt;&lt;/PaperSize&gt;&lt;PaperSize class=&quot;System.Drawing.Printing.PaperSize&quot; assembly=&quot;System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&quot; encoded=&quot;true&quot;&gt;AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlclNpemUFAAAABGtpbmQEbmFtZQV3aWR0aAZoZWlnaHQbY3JlYXRlZEJ5RGVmYXVsdENvbnN0cnVjdG9yBAEAAAAhU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJLaW5kAgAAAAgIAQIAAAAF/f///yFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlcktpbmQBAAAAB3ZhbHVlX18ACAIAAAAAAAAABgQAAAAGTGV0dGVyUgMAAEwEAAAACw==&lt;/PaperSize&gt;&lt;Centering&gt;None&lt;/Centering&gt;&lt;RepeatColStart&gt;-1&lt;/RepeatColStart&gt;&lt;RepeatColEnd&gt;-1&lt;/RepeatColEnd&gt;&lt;RepeatRowStart&gt;-1&lt;/RepeatRowStart&gt;&lt;RepeatRowEnd&gt;-1&lt;/RepeatRowEnd&gt;&lt;SmartPrintPagesTall&gt;1&lt;/SmartPrintPagesTall&gt;&lt;SmartPrintPagesWide&gt;1&lt;/SmartPrintPagesWide&gt;&lt;HeaderHeight&gt;-1&lt;/HeaderHeight&gt;&lt;FooterHeight&gt;-1&lt;/FooterHeight&gt;&lt;/PrintInfo&gt;&lt;TitleInfo class=&quot;FarPoint.Web.Spread.TitleInfo&quot;&gt;&lt;Style class=&quot;FarPoint.Web.Spread.StyleInfo&quot;&gt;&lt;BackColor&gt;#e7eff7&lt;/BackColor&gt;&lt;HorizontalAlign&gt;Right&lt;/HorizontalAlign&gt;&lt;/Style&gt;&lt;/TitleInfo&gt;&lt;LayoutMode&gt;CellLayoutMode&lt;/LayoutMode&gt;&lt;AutoFilterMode&gt;FilterGadget&lt;/AutoFilterMode&gt;&lt;CurrentPageIndex type=&quot;System.Int32&quot;&gt;0&lt;/CurrentPageIndex&gt;&lt;/Settings&gt;&lt;/Sheet&gt;"
DefaultColumnWidth="64" DefaultRowHeight="20" MaximumIterations="100" SelectionPolicy="MultiRange"
SelectionBackColor="#C6C6C6" SelectionForeColor="#2D0000">
</FarPoint:SheetView>
</Sheets>
<TouchStrips>
<FarPoint:TouchStrip Area="Chart" NoTouchStrip="True">
</FarPoint:TouchStrip>
</TouchStrips>
<TitleInfo BackColor="#E7EFF7" ForeColor="" HorizontalAlign="Center" VerticalAlign="NotSet"
Font-Size="X-Large" Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout="False" Font-Underline="False">
</TitleInfo>
</FarPoint:FpSpread>
</div>
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<div style="visibility: hidden;">
<FarPoint:FpSpread ID="fpDataFields" runat="server" BorderColor="Black" BorderStyle="Solid"
BorderWidth="1px" Height="200px" Width="100%" ActiveSheetViewIndex="0" DesignString="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;Spread /&gt;">
<TouchInfo SelectionGripperLineColor=""></TouchInfo>
<CommandBar BackColor="Control" ButtonFaceColor="Control" ButtonHighlightColor="ControlLightLight"
ButtonShadowColor="ControlDark">
<Background BackgroundImageUrl="SPREADCLIENTPATH:/img/cbbg.gif"></Background>
</CommandBar>
<Sheets>
<FarPoint:SheetView SheetName="Sheet1" AllowPage="False" DesignString="&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;&lt;Sheet&gt;&lt;Data&gt;&lt;RowHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;3&quot; columns=&quot;1&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;/RowHeader&gt;&lt;ColumnHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;1&quot; columns=&quot;5&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;Cells&gt;&lt;Cell row=&quot;0&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;字段编号&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;0&quot; column=&quot;1&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;字段名称&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;0&quot; column=&quot;2&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;对应单元格&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;0&quot; column=&quot;3&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;数据类型&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;0&quot; column=&quot;4&quot;&gt;&lt;Data type=&quot;System.String&quot;&gt;说明&lt;/Data&gt;&lt;/Cell&gt;&lt;/Cells&gt;&lt;/ColumnHeader&gt;&lt;DataArea class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;3&quot; columns=&quot;5&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;SheetName&gt;Sheet1&lt;/SheetName&gt;&lt;/DataArea&gt;&lt;SheetCorner class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;1&quot; columns=&quot;1&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;/SheetCorner&gt;&lt;ColumnFooter class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;1&quot; columns=&quot;5&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;/ColumnFooter&gt;&lt;/Data&gt;&lt;Presentation&gt;&lt;ActiveSkin class=&quot;FarPoint.Web.Spread.SheetSkin&quot;&gt;&lt;Name&gt;Classic&lt;/Name&gt;&lt;BackColor&gt;Empty&lt;/BackColor&gt;&lt;CellBackColor&gt;Empty&lt;/CellBackColor&gt;&lt;CellForeColor&gt;Empty&lt;/CellForeColor&gt;&lt;CellSpacing&gt;0&lt;/CellSpacing&gt;&lt;GridLines&gt;Both&lt;/GridLines&gt;&lt;GridLineColor&gt;LightGray&lt;/GridLineColor&gt;&lt;HeaderBackColor&gt;Control&lt;/HeaderBackColor&gt;&lt;HeaderForeColor&gt;Empty&lt;/HeaderForeColor&gt;&lt;FlatColumnHeader&gt;False&lt;/FlatColumnHeader&gt;&lt;FooterBackColor&gt;Empty&lt;/FooterBackColor&gt;&lt;FooterForeColor&gt;Empty&lt;/FooterForeColor&gt;&lt;FlatColumnFooter&gt;False&lt;/FlatColumnFooter&gt;&lt;FlatRowHeader&gt;False&lt;/FlatRowHeader&gt;&lt;HeaderFontBold&gt;False&lt;/HeaderFontBold&gt;&lt;FooterFontBold&gt;False&lt;/FooterFontBold&gt;&lt;SelectionBackColor&gt;LightBlue&lt;/SelectionBackColor&gt;&lt;SelectionForeColor&gt;Empty&lt;/SelectionForeColor&gt;&lt;EvenRowBackColor&gt;Empty&lt;/EvenRowBackColor&gt;&lt;OddRowBackColor&gt;Empty&lt;/OddRowBackColor&gt;&lt;ShowColumnHeader&gt;True&lt;/ShowColumnHeader&gt;&lt;ShowColumnFooter&gt;False&lt;/ShowColumnFooter&gt;&lt;ShowRowHeader&gt;True&lt;/ShowRowHeader&gt;&lt;ColumnHeaderBackground class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/chm.png&lt;/BackgroundImageUrl&gt;&lt;/ColumnHeaderBackground&gt;&lt;SheetCornerBackground class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/chm.png&lt;/BackgroundImageUrl&gt;&lt;/SheetCornerBackground&gt;&lt;HeaderGrayAreaColor&gt;Control&lt;/HeaderGrayAreaColor&gt;&lt;FilterBarBackColor&gt;Control&lt;/FilterBarBackColor&gt;&lt;FilterBarForeColor&gt;Empty&lt;/FilterBarForeColor&gt;&lt;FilterBarHeaderBackColor&gt;Control&lt;/FilterBarHeaderBackColor&gt;&lt;FilterBarHeaderForeColor&gt;Empty&lt;/FilterBarHeaderForeColor&gt;&lt;ShowFilterBar&gt;False&lt;/ShowFilterBar&gt;&lt;FilterBarHeaderParent&gt;RowHeaderDefault&lt;/FilterBarHeaderParent&gt;&lt;FilterBarParent&gt;FilterBarDefault&lt;/FilterBarParent&gt;&lt;/ActiveSkin&gt;&lt;HeaderGrayAreaColor&gt;Control&lt;/HeaderGrayAreaColor&gt;&lt;AxisModels&gt;&lt;Column class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; orientation=&quot;Horizontal&quot; count=&quot;5&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;SortIndicator&gt;Ascending&lt;/SortIndicator&gt;&lt;/Item&gt;&lt;Item index=&quot;0&quot;&gt;&lt;Visible&gt;False&lt;/Visible&gt;&lt;/Item&gt;&lt;Item index=&quot;1&quot;&gt;&lt;Size&gt;120&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;2&quot;&gt;&lt;Size&gt;150&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;3&quot;&gt;&lt;Size&gt;150&lt;/Size&gt;&lt;/Item&gt;&lt;Item index=&quot;4&quot;&gt;&lt;Size&gt;200&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/Column&gt;&lt;RowHeaderColumn class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;30&quot; orientation=&quot;Horizontal&quot; count=&quot;1&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;SortIndicator&gt;Ascending&lt;/SortIndicator&gt;&lt;Size&gt;30&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/RowHeaderColumn&gt;&lt;ColumnHeaderRow class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;22&quot; orientation=&quot;Vertical&quot; count=&quot;1&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;Size&gt;22&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/ColumnHeaderRow&gt;&lt;ColumnFooterRow class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; defaultSize=&quot;22&quot; orientation=&quot;Vertical&quot; count=&quot;1&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;Size&gt;22&lt;/Size&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/ColumnFooterRow&gt;&lt;/AxisModels&gt;&lt;StyleModels&gt;&lt;RowHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;3&quot; Columns=&quot;1&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;RowHeaderDefault&quot;&gt;&lt;BackColor&gt;Control&lt;/BackColor&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/RowHeader&gt;&lt;ColumnHeader class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;1&quot; Columns=&quot;5&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;ColumnHeaderDefault&quot;&gt;&lt;BackColor&gt;Control&lt;/BackColor&gt;&lt;Background class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/chm.png&lt;/BackgroundImageUrl&gt;&lt;/Background&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/ColumnHeader&gt;&lt;DataArea class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;3&quot; Columns=&quot;5&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;DataAreaDefault&quot; /&gt;&lt;ConditionalFormatCollections /&gt;&lt;/DataArea&gt;&lt;SheetCorner class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;1&quot; Columns=&quot;1&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;CornerDefault&quot;&gt;&lt;BackColor&gt;Control&lt;/BackColor&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot; Size=&quot;1&quot; Style=&quot;Solid&quot;&gt;&lt;Bottom Color=&quot;ControlDark&quot; /&gt;&lt;Left Size=&quot;0&quot; /&gt;&lt;Right Color=&quot;ControlDark&quot; /&gt;&lt;Top Size=&quot;0&quot; /&gt;&lt;/Border&gt;&lt;Background class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/chm.png&lt;/BackgroundImageUrl&gt;&lt;/Background&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/SheetCorner&gt;&lt;ColumnFooter class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;1&quot; Columns=&quot;5&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;DefaultStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;ColumnFooterDefault&quot;&gt;&lt;BackColor&gt;Control&lt;/BackColor&gt;&lt;/DefaultStyle&gt;&lt;ConditionalFormatCollections /&gt;&lt;/ColumnFooter&gt;&lt;/StyleModels&gt;&lt;MessageRowStyle class=&quot;FarPoint.Web.Spread.Appearance&quot;&gt;&lt;BackColor&gt;LightYellow&lt;/BackColor&gt;&lt;ForeColor&gt;Red&lt;/ForeColor&gt;&lt;/MessageRowStyle&gt;&lt;SheetCornerStyle class=&quot;FarPoint.Web.Spread.NamedStyle&quot; Parent=&quot;CornerDefault&quot;&gt;&lt;BackColor&gt;Control&lt;/BackColor&gt;&lt;Border class=&quot;FarPoint.Web.Spread.Border&quot; Size=&quot;1&quot; Style=&quot;Solid&quot;&gt;&lt;Bottom Color=&quot;ControlDark&quot; /&gt;&lt;Left Size=&quot;0&quot; /&gt;&lt;Right Color=&quot;ControlDark&quot; /&gt;&lt;Top Size=&quot;0&quot; /&gt;&lt;/Border&gt;&lt;Background class=&quot;FarPoint.Web.Spread.Background&quot;&gt;&lt;BackgroundImageUrl&gt;SPREADCLIENTPATH:/img/chm.png&lt;/BackgroundImageUrl&gt;&lt;/Background&gt;&lt;/SheetCornerStyle&gt;&lt;AllowLoadOnDemand&gt;false&lt;/AllowLoadOnDemand&gt;&lt;LoadRowIncrement &gt;10&lt;/LoadRowIncrement &gt;&lt;LoadInitRowCount &gt;30&lt;/LoadInitRowCount &gt;&lt;LoadOnDemandMode &gt;Standard&lt;/LoadOnDemandMode &gt;&lt;LoadOnDemandInterval &gt;500&lt;/LoadOnDemandInterval &gt;&lt;LoadOnDemandTriggerMode &gt;Timed&lt;/LoadOnDemandTriggerMode &gt;&lt;LoadOffsetFromBottom &gt;0&lt;/LoadOffsetFromBottom &gt;&lt;AllowVirtualScrollPaging&gt;false&lt;/AllowVirtualScrollPaging&gt;&lt;VirtualScrollPagingPrevRowCount&gt;0&lt;/VirtualScrollPagingPrevRowCount&gt;&lt;VirtualScrollPagingFormatString&gt;第{page}页 共{count}页&lt;/VirtualScrollPagingFormatString&gt;&lt;TopRow&gt;0&lt;/TopRow&gt;&lt;PreviewRowStyle class=&quot;FarPoint.Web.Spread.PreviewRowInfo&quot; /&gt;&lt;FilterBar class=&quot;FarPoint.Web.Spread.FilterBar&quot;&gt;&lt;Height&gt;22&lt;/Height&gt;&lt;IndicatorCssClass /&gt;&lt;Style class=&quot;FarPoint.Web.Spread.Model.DefaultSheetStyleModel&quot; Rows=&quot;2&quot; Columns=&quot;5&quot;&gt;&lt;AltRowCount&gt;2&lt;/AltRowCount&gt;&lt;RowStyles&gt;&lt;RowStyle Index=&quot;0&quot; class=&quot;FarPoint.Web.Spread.FilterBarStyleInfo&quot; Parent=&quot;FilterBarDefault&quot;&gt;&lt;BackColor&gt;Control&lt;/BackColor&gt;&lt;/RowStyle&gt;&lt;RowStyle Index=&quot;1&quot; class=&quot;FarPoint.Web.Spread.FilterBarStyleInfo&quot; Parent=&quot;RowHeaderDefault&quot;&gt;&lt;BackColor&gt;Control&lt;/BackColor&gt;&lt;/RowStyle&gt;&lt;/RowStyles&gt;&lt;ConditionalFormatCollections /&gt;&lt;/Style&gt;&lt;/FilterBar&gt;&lt;/Presentation&gt;&lt;Settings&gt;&lt;Name&gt;Sheet1&lt;/Name&gt;&lt;Categories&gt;&lt;Appearance&gt;&lt;GridLineColor&gt;#d0d7e5&lt;/GridLineColor&gt;&lt;RowHeaderWidth&gt;30&lt;/RowHeaderWidth&gt;&lt;HeaderGrayAreaColor&gt;Control&lt;/HeaderGrayAreaColor&gt;&lt;SelectionBackColor&gt;#eaecf5&lt;/SelectionBackColor&gt;&lt;SelectionBorder class=&quot;FarPoint.Web.Spread.Border&quot; /&gt;&lt;/Appearance&gt;&lt;Behavior&gt;&lt;EditTemplateColumnCount&gt;2&lt;/EditTemplateColumnCount&gt;&lt;AllowPage&gt;False&lt;/AllowPage&gt;&lt;GroupBarText&gt;拖放一个列以便按照该列进行分组。&lt;/GroupBarText&gt;&lt;/Behavior&gt;&lt;Layout&gt;&lt;RowHeaderColumnCount&gt;1&lt;/RowHeaderColumnCount&gt;&lt;FrozenColumnCount&gt;2&lt;/FrozenColumnCount&gt;&lt;ColumnHeaderRowCount&gt;1&lt;/ColumnHeaderRowCount&gt;&lt;ColumnCount&gt;5&lt;/ColumnCount&gt;&lt;/Layout&gt;&lt;/Categories&gt;&lt;ActiveRow&gt;0&lt;/ActiveRow&gt;&lt;ActiveColumn&gt;0&lt;/ActiveColumn&gt;&lt;ColumnHeaderRowCount&gt;1&lt;/ColumnHeaderRowCount&gt;&lt;ColumnFooterRowCount&gt;1&lt;/ColumnFooterRowCount&gt;&lt;PrintInfo&gt;&lt;Header /&gt;&lt;Footer /&gt;&lt;ZoomFactor&gt;0&lt;/ZoomFactor&gt;&lt;FirstPageNumber&gt;1&lt;/FirstPageNumber&gt;&lt;Orientation&gt;Auto&lt;/Orientation&gt;&lt;PrintType&gt;All&lt;/PrintType&gt;&lt;PageOrder&gt;Auto&lt;/PageOrder&gt;&lt;BestFitCols&gt;False&lt;/BestFitCols&gt;&lt;BestFitRows&gt;False&lt;/BestFitRows&gt;&lt;PageStart&gt;-1&lt;/PageStart&gt;&lt;PageEnd&gt;-1&lt;/PageEnd&gt;&lt;ColStart&gt;-1&lt;/ColStart&gt;&lt;ColEnd&gt;-1&lt;/ColEnd&gt;&lt;RowStart&gt;-1&lt;/RowStart&gt;&lt;RowEnd&gt;-1&lt;/RowEnd&gt;&lt;ShowBorder&gt;True&lt;/ShowBorder&gt;&lt;ShowGrid&gt;True&lt;/ShowGrid&gt;&lt;ShowColor&gt;True&lt;/ShowColor&gt;&lt;ShowColumnHeader&gt;Inherit&lt;/ShowColumnHeader&gt;&lt;ShowRowHeader&gt;Inherit&lt;/ShowRowHeader&gt;&lt;ShowFilterBar&gt;Inherit&lt;/ShowFilterBar&gt;&lt;ShowColumnFooter&gt;Inherit&lt;/ShowColumnFooter&gt;&lt;ShowColumnFooterEachPage&gt;True&lt;/ShowColumnFooterEachPage&gt;&lt;ShowTitle&gt;True&lt;/ShowTitle&gt;&lt;ShowSubtitle&gt;True&lt;/ShowSubtitle&gt;&lt;UseMax&gt;True&lt;/UseMax&gt;&lt;UseSmartPrint&gt;False&lt;/UseSmartPrint&gt;&lt;Opacity&gt;255&lt;/Opacity&gt;&lt;PrintNotes&gt;None&lt;/PrintNotes&gt;&lt;Centering&gt;None&lt;/Centering&gt;&lt;RepeatColStart&gt;-1&lt;/RepeatColStart&gt;&lt;RepeatColEnd&gt;-1&lt;/RepeatColEnd&gt;&lt;RepeatRowStart&gt;-1&lt;/RepeatRowStart&gt;&lt;RepeatRowEnd&gt;-1&lt;/RepeatRowEnd&gt;&lt;SmartPrintPagesTall&gt;1&lt;/SmartPrintPagesTall&gt;&lt;SmartPrintPagesWide&gt;1&lt;/SmartPrintPagesWide&gt;&lt;HeaderHeight&gt;-1&lt;/HeaderHeight&gt;&lt;FooterHeight&gt;-1&lt;/FooterHeight&gt;&lt;/PrintInfo&gt;&lt;TitleInfo class=&quot;FarPoint.Web.Spread.TitleInfo&quot;&gt;&lt;Style class=&quot;FarPoint.Web.Spread.StyleInfo&quot;&gt;&lt;BackColor&gt;#e7eff7&lt;/BackColor&gt;&lt;HorizontalAlign&gt;Right&lt;/HorizontalAlign&gt;&lt;/Style&gt;&lt;/TitleInfo&gt;&lt;WorksheetTemplate class=&quot;FarPoint.Web.Spread.WorksheetTemplate&quot;&gt;&lt;Layout&gt;&lt;ColumnCount&gt;4&lt;/ColumnCount&gt;&lt;/Layout&gt;&lt;AxisModels&gt;&lt;LayoutColumn class=&quot;FarPoint.Web.Spread.Model.DefaultSheetAxisModel&quot; orientation=&quot;Horizontal&quot; count=&quot;4&quot;&gt;&lt;Items&gt;&lt;Item index=&quot;-1&quot;&gt;&lt;SortIndicator&gt;Ascending&lt;/SortIndicator&gt;&lt;/Item&gt;&lt;/Items&gt;&lt;/LayoutColumn&gt;&lt;/AxisModels&gt;&lt;Data&gt;&lt;LayoutData class=&quot;FarPoint.Web.Spread.Model.DefaultSheetDataModel&quot; rows=&quot;1&quot; columns=&quot;4&quot;&gt;&lt;AutoCalculation&gt;True&lt;/AutoCalculation&gt;&lt;AutoGenerateColumns&gt;True&lt;/AutoGenerateColumns&gt;&lt;ReferenceStyle&gt;A1&lt;/ReferenceStyle&gt;&lt;Iteration&gt;False&lt;/Iteration&gt;&lt;MaximumIterations&gt;1&lt;/MaximumIterations&gt;&lt;MaximumChange&gt;0.001&lt;/MaximumChange&gt;&lt;Cells&gt;&lt;Cell row=&quot;0&quot; column=&quot;0&quot;&gt;&lt;Data type=&quot;System.Int32&quot;&gt;0&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;0&quot; column=&quot;1&quot;&gt;&lt;Data type=&quot;System.Int32&quot;&gt;1&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;0&quot; column=&quot;2&quot;&gt;&lt;Data type=&quot;System.Int32&quot;&gt;2&lt;/Data&gt;&lt;/Cell&gt;&lt;Cell row=&quot;0&quot; column=&quot;3&quot;&gt;&lt;Data type=&quot;System.Int32&quot;&gt;3&lt;/Data&gt;&lt;/Cell&gt;&lt;/Cells&gt;&lt;/LayoutData&gt;&lt;/Data&gt;&lt;/WorksheetTemplate&gt;&lt;LayoutMode&gt;CellLayoutMode&lt;/LayoutMode&gt;&lt;AutoFilterMode&gt;FilterGadget&lt;/AutoFilterMode&gt;&lt;CurrentPageIndex type=&quot;System.Int32&quot;&gt;0&lt;/CurrentPageIndex&gt;&lt;/Settings&gt;&lt;/Sheet&gt;"
GridLineColor="#D0D7E5" SelectionBackColor="#EAECF5" FrozenColumnCount="2" RowHeaderWidth="30">
<RowHeader Width="30" />
</FarPoint:SheetView>
</Sheets>
<TouchStrips>
<FarPoint:TouchStrip Area="Chart" NoTouchStrip="True">
</FarPoint:TouchStrip>
</TouchStrips>
<TitleInfo BackColor="#E7EFF7" ForeColor="" HorizontalAlign="Center" VerticalAlign="NotSet"
Font-Size="X-Large" Font-Bold="False" Font-Italic="False" Font-Overline="False"
Font-Strikeout="False" Font-Underline="False">
</TitleInfo>
</FarPoint:FpSpread>
</div>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<asp:HiddenField ID="hfTemplateID" runat="server" />
<asp:HiddenField ID="hfSourceID" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/GrapeCity-dataprocess.git
git@api.gitlife.ru:oschina-mirror/GrapeCity-dataprocess.git
oschina-mirror
GrapeCity-dataprocess
GrapeCity-dataprocess
master