- width:100%なのにはみ出す理由と回避策。CSSを触るなら必ず理解しなくてはいけないボックスモデルの話。
- http://ginpen.com/2012/12/05/css-box-model/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.UI; | |
using System.Web.UI.WebControls; | |
using FarPoint.Web.Spread; | |
namespace WebApplication1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<FarPoint:FpSpread ID="spd" runat="server" BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" Width="100%" Height="100%"> | |
<CommandBar BackColor="Control" ButtonFaceColor="Control" ButtonHighlightColor="ControlLightLight" ButtonShadowColor="ControlDark"></CommandBar> | |
<clientevents activecellchanging="spd_ActiveCellChanging" /> | |
<Sheets> | |
<FarPoint:SheetView SheetName="Sheet1"></FarPoint:SheetView> | |
</Sheets> | |
</FarPoint:FpSpread> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.UI; | |
using System.Web.UI.WebControls; | |
namespace WebApplication2 | |
{ | |
public partial class _Default : System.Web.UI.Page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.UI; | |
using System.Web.UI.WebControls; | |
using FarPoint.Web.Spread; | |
namespace WebApplication3 |
- チーム開発における単体テストの実践~Visual Studio 2012 ソリューションシナリオ
- http://blogs.msdn.com/b/visualstudio_jpn/archive/2013/02/07/unit-test-in-team.aspx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="SpdCustomSortSample._Default" %> | |
<%@ Register assembly="FarPoint.Web.SpreadJ" namespace="FarPoint.Web.Spread" tagprefix="FarPoint" %> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" > | |
<head runat="server"> | |
<title></title> | |
</head> |
- Shift+Alt+F11
- Next Item: Ctrl+Alt+PgUp
- Prev Item: Ctrl+Alt+PgDn