25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
|
|
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ProjectWBSControl.ascx.cs" Inherits="FineUIPro.Web.Controls.ProjectWBSControl" %>
|
||
|
|
<f:Panel ID="Panel2" runat="server" BodyPadding="0px" ShowBorder="false"
|
||
|
|
ShowHeader="false" Layout="VBox" BoxConfigAlign="Stretch">
|
||
|
|
<Toolbars>
|
||
|
|
<f:Toolbar ID="Toolbar1" Position="Top" runat="server">
|
||
|
|
<Items>
|
||
|
|
<f:RadioButtonList runat="server" ID="ckState" Width="350px" AutoColumnWidth="true"
|
||
|
|
AutoPostBack="true" OnSelectedIndexChanged="ckState_SelectedIndexChanged">
|
||
|
|
<f:RadioItem Text="全部" Value="-1" Selected="true"/>
|
||
|
|
<f:RadioItem Text="0级" Value="0" />
|
||
|
|
<f:RadioItem Text="1级" Value="1" />
|
||
|
|
<f:RadioItem Text="2级" Value="2" />
|
||
|
|
<f:RadioItem Text="3级" Value="3" />
|
||
|
|
</f:RadioButtonList>
|
||
|
|
</Items>
|
||
|
|
</f:Toolbar>
|
||
|
|
</Toolbars>
|
||
|
|
<Items>
|
||
|
|
<f:Tree ID="trWBS" EnableCollapse="true" ShowHeader="false" Title="WBS"
|
||
|
|
OnNodeCommand="trWBS_NodeCommand" OnNodeExpand="trWBS_NodeExpand" AutoLeafIdentification="true"
|
||
|
|
runat="server" ShowBorder="false" EnableTextSelection="True">
|
||
|
|
</f:Tree>
|
||
|
|
</Items>
|
||
|
|
</f:Panel>
|