本文整理汇总了C#中Cell.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# Cell.GetType方法的具体用法?C# Cell.GetType怎么用?C# Cell.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cell
的用法示例。
在下文中一共展示了Cell.GetType方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetNativeCell
internal static UITableViewCell GetNativeCell(UITableView tableView, Cell cell, bool recycleCells = false, string templateId = "")
{
var id = cell.GetType().FullName;
var renderer = (CellRenderer)Registrar.Registered.GetHandler(cell.GetType());
ContextActionsCell contextCell = null;
UITableViewCell reusableCell = null;
if (cell.HasContextActions || recycleCells)
{
contextCell = (ContextActionsCell)tableView.DequeueReusableCell(ContextActionsCell.Key + templateId);
if (contextCell == null)
{
contextCell = new ContextActionsCell(templateId);
reusableCell = tableView.DequeueReusableCell(id);
}
else
{
contextCell.Close();
reusableCell = contextCell.ContentCell;
if (reusableCell.ReuseIdentifier.ToString() != id)
reusableCell = null;
}
}
else
reusableCell = tableView.DequeueReusableCell(id);
var nativeCell = renderer.GetCell(cell, reusableCell, tableView);
var cellWithContent = nativeCell;
// Sometimes iOS for returns a dequeued cell whose Layer is hidden.
// This prevents it from showing up, so lets turn it back on!
if (cellWithContent.Layer.Hidden)
cellWithContent.Layer.Hidden = false;
if (contextCell != null)
{
contextCell.Update(tableView, cell, nativeCell);
var viewTableCell = contextCell.ContentCell as ViewCellRenderer.ViewTableCell;
if (viewTableCell != null)
viewTableCell.SupressSeparator = true;
nativeCell = contextCell;
}
// Because the layer was hidden we need to layout the cell by hand
if (cellWithContent != null)
cellWithContent.LayoutSubviews();
return nativeCell;
}
示例2: GetCell
public override UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
{
var entryCell = (EntryCell)item;
var tvc = reusableCell as EntryCellTableViewCell;
if (tvc == null)
tvc = new EntryCellTableViewCell(item.GetType().FullName);
else
{
tvc.Cell.PropertyChanged -= OnCellPropertyChanged;
tvc.TextFieldTextChanged -= OnTextFieldTextChanged;
tvc.KeyboardDoneButtonPressed -= OnKeyBoardDoneButtonPressed;
}
SetRealCell(item, tvc);
tvc.Cell = item;
tvc.Cell.PropertyChanged += OnCellPropertyChanged;
tvc.TextFieldTextChanged += OnTextFieldTextChanged;
tvc.KeyboardDoneButtonPressed += OnKeyBoardDoneButtonPressed;
WireUpForceUpdateSizeRequested(item, tvc, tv);
UpdateBackground(tvc, entryCell);
UpdateLabel(tvc, entryCell);
UpdateText(tvc, entryCell);
UpdateKeyboard(tvc, entryCell);
UpdatePlaceholder(tvc, entryCell);
UpdateLabelColor(tvc, entryCell);
UpdateHorizontalTextAlignment(tvc, entryCell);
UpdateIsEnabled(tvc, entryCell);
return tvc;
}
示例3: GetCell
public override UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
{
var textCell = (TextCell)item;
var tvc = reusableCell as CellTableViewCell;
if (tvc == null)
tvc = new CellTableViewCell(UITableViewCellStyle.Subtitle, item.GetType().FullName);
else
tvc.Cell.PropertyChanged -= tvc.HandlePropertyChanged;
tvc.Cell = textCell;
textCell.PropertyChanged += tvc.HandlePropertyChanged;
tvc.PropertyChanged = HandlePropertyChanged;
tvc.TextLabel.Text = textCell.Text;
tvc.DetailTextLabel.Text = textCell.Detail;
tvc.TextLabel.TextColor = textCell.TextColor.ToUIColor(DefaultTextColor);
tvc.DetailTextLabel.TextColor = textCell.DetailColor.ToUIColor(DefaultDetailColor);
WireUpForceUpdateSizeRequested(item, tvc, tv);
UpdateIsEnabled(tvc, textCell);
UpdateBackground(tvc, item);
return tvc;
}
示例4: GetCell
public virtual UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
{
var tvc = reusableCell as CellTableViewCell ?? new CellTableViewCell(UITableViewCellStyle.Default, item.GetType().FullName);
tvc.Cell = item;
WireUpForceUpdateSizeRequested(item, tvc, tv);
tvc.TextLabel.Text = item.ToString();
UpdateBackground(tvc, item);
return tvc;
}
示例5: GetCell
public static AView GetCell(Cell item, AView convertView, ViewGroup parent, Context context, View view)
{
CellRenderer renderer = CellRenderer.GetRenderer(item);
if (renderer == null)
{
renderer = Registrar.Registered.GetHandler<CellRenderer>(item.GetType());
renderer.ParentView = view;
}
AView result = renderer.GetCell(item, convertView, parent, context);
if (view is TableView)
UpdateMinimumHeightFromParent(context, result, (TableView)view);
else if (view is ListView)
UpdateMinimumHeightFromParent(context, result, (ListView)view);
return result;
}
示例6: GetCell
public override UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
{
var viewCell = (ViewCell)item;
var cell = reusableCell as ViewTableCell;
if (cell == null)
cell = new ViewTableCell(item.GetType().FullName);
else
cell.ViewCell.PropertyChanged -= ViewCellPropertyChanged;
viewCell.PropertyChanged += ViewCellPropertyChanged;
cell.ViewCell = viewCell;
SetRealCell(item, cell);
WireUpForceUpdateSizeRequested(item, cell, tv);
UpdateBackground(cell, item);
UpdateIsEnabled(cell, viewCell);
return cell;
}
示例7: SetSource
void SetSource(Cell oldCell, Cell newCell)
{
if (oldCell != null)
{
oldCell.PropertyChanged -= _propertyChangedHandler;
oldCell.SendDisappearing();
}
if (newCell != null)
{
newCell.SendAppearing();
if (oldCell == null || oldCell.GetType() != newCell.GetType())
ContentTemplate = GetTemplate(newCell);
Content = newCell;
SetupContextMenu();
newCell.PropertyChanged += _propertyChangedHandler;
}
else
Content = null;
}
示例8: SerializeCell
object SerializeCell(IDesignerSerializationManager manager, CodeExpression target, Cell cell)
{
object codeObject = null;
ExpressionContext context = null;
ExpressionContext context2 = manager.Context[typeof(ExpressionContext)] as ExpressionContext;
if (context2 != null)
{
CodeMethodInvokeExpression codeIndexer = new CodeMethodInvokeExpression(target, "GetAt", new CodePrimitiveExpression(cell.Column.Index));
context = new ExpressionContext(codeIndexer, typeof(RowCollection), context2.PresetValue, cell);
manager.Context.Push(context);
}
try
{
CodeDomSerializer rowSerialzier = (CodeDomSerializer)manager.GetSerializer(cell.GetType(), typeof(CodeDomSerializer));
//codeObject = rowSerialzier.Serialize(manager, row);
codeObject = rowSerialzier.SerializeAbsolute(manager, cell);
}
finally
{
if (context != null)
{
manager.Context.Pop();
}
}
return codeObject;
}
示例9: GetTemplate
System.Windows.DataTemplate GetTemplate(Cell cell)
{
var renderer = Registrar.Registered.GetHandler<ICellRenderer>(cell.GetType());
return renderer.GetTemplate(cell);
}