FigureLength Oluşturucular
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Yeni bir FigureLength örneğini başlatır.
Aşırı Yüklemeler
FigureLength(Double) |
Belirtilen sayıda piksel uzunluğunda sınıfın yeni bir örneğini FigureLength başlatır. |
FigureLength(Double, FigureUnitType) |
belirtilen Value ve FigureUnitTypeile sınıfının yeni bir örneğini FigureLength başlatır. |
FigureLength(Double)
Belirtilen sayıda piksel uzunluğunda sınıfın yeni bir örneğini FigureLength başlatır.
public:
FigureLength(double pixels);
public FigureLength (double pixels);
new System.Windows.FigureLength : double -> System.Windows.FigureLength
Public Sub New (pixels As Double)
Parametreler
- pixels
- Double
Uzunluğu oluşturan cihazdan bağımsız piksel sayısı (inç başına 96 piksel).
Örnekler
Aşağıdaki örnekte, kullanıcı öğesine tıkladığındaFigureWidth, azaltıldığındaFigure. Aşağıda örnek için XAML verilmiştir.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SDKSample.FigureLengthExample" >
<FlowDocumentReader>
<FlowDocument >
<Paragraph>
Raw text inside the paragraph
<Figure Name="myFigure" Width="300">
<Paragraph FontStyle="Italic" MouseDown="OnMouseDownDecreaseWidth" >
Text inside of paragraph that is inside Figure...
</Paragraph>
</Figure>
</Paragraph>
</FlowDocument>
</FlowDocumentReader>
</Page>
Aşağıda öğesinin sayısını azaltmak Width için kullanılan kod yer alır Figure.
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace SDKSample
{
public partial class FigureLengthExample : Page
{
void OnMouseDownDecreaseWidth(object sender, MouseButtonEventArgs args)
{
FigureLength myFigureLength = myFigure.Width;
double widthValue = myFigureLength.Value;
if (widthValue > 0)
{
myFigure.Width = new FigureLength((widthValue - 10), FigureUnitType.Pixel);
}
}
}
}
Şunlara uygulanır
FigureLength(Double, FigureUnitType)
belirtilen Value ve FigureUnitTypeile sınıfının yeni bir örneğini FigureLength başlatır.
public:
FigureLength(double value, System::Windows::FigureUnitType type);
public FigureLength (double value, System.Windows.FigureUnitType type);
new System.Windows.FigureLength : double * System.Windows.FigureUnitType -> System.Windows.FigureLength
Public Sub New (value As Double, type As FigureUnitType)
Parametreler
- value
- Double
SınıfınValue.FigureLength
- type
- FigureUnitType
SınıfınValue.FigureUnitType
Örnekler
Aşağıdaki örnekte, kullanıcı öğesine tıkladığındaFigureWidth, azaltıldığındaFigure. Aşağıda örnek için XAML verilmiştir.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="SDKSample.FigureLengthExample" >
<FlowDocumentReader>
<FlowDocument >
<Paragraph>
Raw text inside the paragraph
<Figure Name="myFigure" Width="300">
<Paragraph FontStyle="Italic" MouseDown="OnMouseDownDecreaseWidth" >
Text inside of paragraph that is inside Figure...
</Paragraph>
</Figure>
</Paragraph>
</FlowDocument>
</FlowDocumentReader>
</Page>
Aşağıda öğesinin sayısını azaltmak Width için kullanılan kod yer alır Figure.
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace SDKSample
{
public partial class FigureLengthExample : Page
{
void OnMouseDownDecreaseWidth(object sender, MouseButtonEventArgs args)
{
FigureLength myFigureLength = myFigure.Width;
double widthValue = myFigureLength.Value;
if (widthValue > 0)
{
myFigure.Width = new FigureLength((widthValue - 10), FigureUnitType.Pixel);
}
}
}
}